Trait velvet_core::properties::IntrinsicProperty[][src]

pub trait IntrinsicProperty {
    type Res;
    fn calculate_intrinsic(&self, system: &System) -> Self::Res;
}

Calculates a system-wide property without using the applied potentials.

Associated Types

type Res[src]

The property's return type.

Loading content...

Required methods

fn calculate_intrinsic(&self, system: &System) -> Self::Res[src]

Returns a physical property of the system without accessing the associated potentials.

Loading content...

Implementors

impl IntrinsicProperty for KineticEnergy[src]

type Res = f32

impl IntrinsicProperty for Temperature[src]

type Res = f32

Loading content...