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

pub struct ThermalBridge {
    pub name: String,
    pub length: Option<f32>,
    pub tbtype: String,
    pub psi: f32,
    pub frsi: f32,
    pub geometry: Option<TBGeometry>,
    pub catalog: Option<TBByCatalog>,
}

Puente térmico (THERMAL-BRIDGE)

Fields

name: String

Nombre

length: Option<f32>

Longitud total (m) En LIDER antiguo no se guarda la medición en el objeto

tbtype: String

Tipo de puente térmico:

  • PILLAR: pilar en fachada,
  • WINDOW-FRAME: borde de hueco,
  • SLAB: Forjado con cubierta o con suelo en contacto con el aire (anglemin, anglemax, partition)
  • MASONRY: Encuentros entre muros (anglemin, anglemax, partition)
  • UNDER-EXT: Solera con pared exterior (anglemin, anglemax, partition)
psi: f32

Transmitancia térmica W/mK

frsi: f32

Fractor de resistencia superficial frsi (condensaciones)

geometry: Option<TBGeometry>

Propiedades geométricas de los encuentros (anglemin, anglemax, partition)

catalog: Option<TBByCatalog>

Datos para definición por catálogo (tipo 3)

Trait Implementations

impl Clone for ThermalBridge[src]

impl Debug for ThermalBridge[src]

impl Default for ThermalBridge[src]

impl TryFrom<BdlBlock> for ThermalBridge[src]

type Error = Error

The type returned in the event of a conversion error.

pub fn try_from(value: BdlBlock) -> Result<Self, Self::Error>[src]

Conversión de bloque BDL a puente térmico (THERMAL-BRIDGE)

Se pueden de definir (DEFINICION) por defecto (1), por usuario (2) o por catálogo (3?)

Ejemplo:

     "LONGITUDES_CALCULADAS" = THERMAL-BRIDGE
           LONG-TOTAL = 0.000000
           DEFINICION = 1
         ..
     "FRENTE_FORJADO" = THERMAL-BRIDGE
           LONG-TOTAL = 171.629913
           DEFINICION = 2
           TTL    = 0.080000
           FRSI        = 0.45
           ANGLE-MIN   = 135
           ANGLE-MAX   = 225
           TYPE        = SLAB
           PARTITION   = YES
         ..
    "UNION_CUBIERTA" = THERMAL-BRIDGE
        LONG-TOTAL = 148.341034
        DEFINICION = 3
        TTL    = 0.226667
        LISTA-N   = ( "Cubiertas planas - Forjado no interrumpe el aislamiento en fachada")
        LISTA-L   = ( 100)
        LISTA-MURO   = ( 0.230000)
        LISTA-MARCO   = ( 0.200000)
        FRSI        = 0.28
        ANGLE-MIN   = 0
        ANGLE-MAX   = 135
        TYPE        = SLAB
        PARTITION   = BOTH
        ..

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.