Struct hulc2envolventecte::cte::common::SurfaceMonthlyRadiation[][src]

pub struct SurfaceMonthlyRadiation {
    pub zone: ClimateZone,
    pub orientation: Orientation,
    pub beta: f32,
    pub gamma: f32,
    pub dir: [f32; 12],
    pub dif: [f32; 12],
    pub tot: [f32; 12],
    pub f_shwith200: [f32; 12],
    pub f_shwith300: [f32; 12],
    pub f_shwith500: [f32; 12],
}

Datos mensuales de radiación por superficie

Fields

zone: ClimateZone

Zona climática

orientation: Orientation

Orientación u horizontal

beta: f32

Inclinación (Horiz=0, vertical=90)

gamma: f32

Orientación (N=0, E=-90, W=+90, S=180) TODO: convertir a orientación UNE-EN ISO 52016-1, medido desde el sur, positivo al este, negativo al oeste (S=0, E=+90, W=-90)

dir: [f32; 12]

Radiación mensual directa

dif: [f32; 12]

Radiación mensual difusa

tot: [f32; 12]

Radiación mensual total

f_shwith200: [f32; 12]

Factor mensual de reducción para sombreamientos solares móviles para nivel de irradiación de activación de 200W/m2

f_shwith300: [f32; 12]

Factor mensual de reducción para sombreamientos solares móviles para nivel de irradiación de activación de 300W/m2

f_shwith500: [f32; 12]

Factor mensual de reducción para sombreamientos solares móviles para nivel de irradiación de activación de 500W/m2

Trait Implementations

impl Clone for SurfaceMonthlyRadiation[src]

impl Debug for SurfaceMonthlyRadiation[src]

impl<'de> Deserialize<'de> for SurfaceMonthlyRadiation[src]

impl Serialize for SurfaceMonthlyRadiation[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.