pub struct MDFrame {
pub step: usize,
pub coords: Coords3D,
pub potential_energy: f64,
pub kinetic_energy: f64,
pub temperature_k: f64,
}Expand description
A snapshot of the system at a given timestep.
Fields§
§step: usizeTimestep index.
coords: Coords3DAtomic coordinates (Å).
potential_energy: f64Potential energy (kcal/mol).
kinetic_energy: f64Kinetic energy (kcal/mol).
temperature_k: f64Instantaneous temperature (K).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MDFrame
impl RefUnwindSafe for MDFrame
impl Send for MDFrame
impl Sync for MDFrame
impl Unpin for MDFrame
impl UnsafeUnpin for MDFrame
impl UnwindSafe for MDFrame
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