[][src]Struct sounding_analysis::experimental::fire::BlowUpAnalysis

pub struct BlowUpAnalysis {
    pub starting_parcel: Parcel,
    pub delta_t: CelsiusDiff,
    pub height: Meters,
}

This characterizes how much heating it would take to cause a plume to "blow up" as defined by the sudden change in the parcel equilibrium level with respect to parcel heating.

The blow up ΔT is the difference in temperature from the parcel that blows up to the parcel the analysis started with (usually the mixed layer parcel). The blow up height is the difference in the equilibrium level of the blow up ΔT plus 0.5C and the blow up ΔT minus 0.5C. This difference was chosen because using the (numerical) derivative is extremely sensitive to the stepsize used when calculating the derivative. This makes sense, since there is actually a step discontinuity at the blow up temperature.

Fields

starting_parcel: Parcel

The original parcel we started with while searching for the blow up.

delta_t: CelsiusDiff

The amount of warming required to cause a blow up.

height: Meters

The change in height from the blow up.

Trait Implementations

impl Debug for BlowUpAnalysis[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.