Struct sounding_analysis::Parcel [−][src]
Variables defining a parcel as used in parcel analysis.
Fields
temperature: f64
Temperature in C
pressure: f64
Pressure in hPa
dew_point: f64
Dew point in C
Methods
impl Parcel[src]
impl Parcelpub fn theta(&self) -> Result<f64>[src]
pub fn theta(&self) -> Result<f64>Get the potential temperatures of the parcel
pub fn theta_e(&self) -> Result<f64>[src]
pub fn theta_e(&self) -> Result<f64>Get the equivalent potential temperature of the parcel
pub fn mixing_ratio(&self) -> Result<f64>[src]
pub fn mixing_ratio(&self) -> Result<f64>Get the mixing ratio of the parcel.AnalysisError
pub fn virtual_temperature_c(&self) -> Result<f64>[src]
pub fn virtual_temperature_c(&self) -> Result<f64>Get the virtual temperature of the parcel
pub fn from_datarow(dr: DataRow) -> Option<Self>[src]
pub fn from_datarow(dr: DataRow) -> Option<Self>Try to convert a DataRow to a Parcel.
Trait Implementations
impl Debug for Parcel[src]
impl Debug for Parcelfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Parcel[src]
impl Clone for Parcelfn clone(&self) -> Parcel[src]
fn clone(&self) -> ParcelReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Parcel[src]
impl Copy for Parcel