//! Thermo module prelude
//!
//! Convenient imports for thermoelectric and thermomagnetic effects.
//!
//! ```rust
//! use spintronics::thermo::prelude::*;
//! ```
// Core thermal effects
pub use AnomalousNernst;
// Magnon thermal transport
pub use ;
// Thermal multilayers
pub use ;
pub use SpinPeltier;
// Type aliases for convenience
/// Anomalous Nernst Effect (ANE)
pub type ANE = AnomalousNernst;
/// Spin Peltier Effect (SPE)
pub type SPE = SpinPeltier;