pub struct EinsteinModel {
pub theta_e: f64,
pub n_atoms: f64,
}Expand description
Einstein specific heat model.
Cv = 3NR * (Theta_E/T)^2 * exp(Theta_E/T) / (exp(Theta_E/T) - 1)^2
Fields§
§theta_e: f64Einstein temperature Theta_E (K).
n_atoms: f64Number of atoms per formula unit.
Implementations§
Auto Trait Implementations§
impl Freeze for EinsteinModel
impl RefUnwindSafe for EinsteinModel
impl Send for EinsteinModel
impl Sync for EinsteinModel
impl Unpin for EinsteinModel
impl UnsafeUnpin for EinsteinModel
impl UnwindSafe for EinsteinModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more