#[repr(u16)]pub enum Grib2Table4_240 {
NoSpecificDistributionFunctionGiven = 0,
DeltaFunctionsWithFixedDiameters = 1,
DeltaFunctionsWithFixedMasses = 2,
GaussianDistributionFixedMeanDiameterAndVariance = 3,
GaussianDistributionVariableParameters = 4,
LogNormalDistributionVariableParameters = 5,
LogNormalDistributionFixedVariance = 6,
LogNormalDistributionFixedVarianceAndParticleDensity = 7,
DerivedFromDistributionType7 = 8,
Missing = 65_535,
}Expand description
GRIB2 - CODE TABLE 4.240: Type of Distribution Function
Revised: 07/07/2017
§Notes
-
Bin-Model or delta function with N concentration cl(r) in class (or mode) l. Concentration-density function: $f(r;d) = \sum_{l=1}^{N} cl(r) \delta(d-Dl)$
- N: Number of modes in the distribution
- $\delta$: Delta-Function
- d: Diameter
- Dl: Diameter of mode l(p1)
-
Bin-Model or delta function with N concentration cl(r) in class (or mode) l. Concentration-density function: $f(r;m) = \sum_{l=1}^{N} cl(r) \delta(m-Ml)$
- N: Number of modes in the distribution
- $\delta$: Delta-Function
- m: Mass
- Ml: Mass of mode (p1)
-
N-Modal concentration-density function consisting of Gaussian-functions: $f(r;d) = \sum_{l=1}^{N} cl(r) (1 / \sqrt{2\pi\delta_l}) * e^{-((d-Dl)/\delta_l)^2}$
- N: Number of modes in the distribution
- d: Diameter
- Dl: Mean diameter of mode l(p1)
- $\delta_l$: Variance of Mode l (p2)
- cl(r): Concentration
-
N-Modal concentration-density function consisting of Gaussian-functions: $f(r;d) = \sum_{l=1}^{N} cl(r) (1 / \sqrt{2\pi\delta_l(r)}) * e^{-((d-Dl(r))/\delta_l(r))^2}$
- N: Fields of concentration cl(r)
- $\delta_l(r)$: Variance
- Dl(r): Mean diameter
§Links
Variants§
NoSpecificDistributionFunctionGiven = 0
DeltaFunctionsWithFixedDiameters = 1
DeltaFunctionsWithFixedMasses = 2
GaussianDistributionFixedMeanDiameterAndVariance = 3
GaussianDistributionVariableParameters = 4
LogNormalDistributionVariableParameters = 5
LogNormalDistributionFixedVariance = 6
LogNormalDistributionFixedVarianceAndParticleDensity = 7
DerivedFromDistributionType7 = 8
Missing = 65_535
Trait Implementations§
Source§impl Clone for Grib2Table4_240
impl Clone for Grib2Table4_240
Source§fn clone(&self) -> Grib2Table4_240
fn clone(&self) -> Grib2Table4_240
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Grib2Table4_240
impl Debug for Grib2Table4_240
Source§impl Display for Grib2Table4_240
impl Display for Grib2Table4_240
Source§impl From<u16> for Grib2Table4_240
impl From<u16> for Grib2Table4_240
Source§impl PartialEq for Grib2Table4_240
impl PartialEq for Grib2Table4_240
impl Copy for Grib2Table4_240
impl Eq for Grib2Table4_240
impl StructuralPartialEq for Grib2Table4_240
Auto Trait Implementations§
impl Freeze for Grib2Table4_240
impl RefUnwindSafe for Grib2Table4_240
impl Send for Grib2Table4_240
impl Sync for Grib2Table4_240
impl Unpin for Grib2Table4_240
impl UnwindSafe for Grib2Table4_240
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more