[][src]Struct hulc2envolventecte::parsers::bdl::MaterialProperties

pub struct MaterialProperties {
    pub thickness: Option<f32>,
    pub conductivity: f32,
    pub density: f32,
    pub specificheat: f32,
    pub vapourdiffusivity: Option<f32>,
}

Definición de propiedades termofísicas y grosor

Fields

thickness: Option<f32>

Espesor, d (m) En LIDER antiguo no se define este valor

conductivity: f32

Conductividad térmica, lambda (W/mK)

density: f32

Densidad, rho (kg/m3)

specificheat: f32

Calor específico, C_p (J/kg K) (valor por defecto 800 J/kg·K)

vapourdiffusivity: Option<f32>

Factor de difusividad al vapor de agua, mu (-) En archivos de LIDER antiguo se pone por defecto 0.0 (no definido)

Trait Implementations

impl Clone for MaterialProperties[src]

impl Copy for MaterialProperties[src]

impl Debug for MaterialProperties[src]

impl Default for MaterialProperties[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.