Struct hulc2envolventecte::parsers::ctehexml::DatosGenerales[][src]

pub struct DatosGenerales {
    pub nombre_proyecto: String,
    pub tipo_vivienda: String,
    pub tipo_definicion: String,
    pub num_viviendas_bloque: i32,
    pub valor_impulsion_aire: f32,
    pub zona_climatica: String,
    pub archivo_climatico: String,
    pub valor_n50_medido: Option<f32>,
    pub bloque_raw: String,
}

Datos del bloque DatosGenerales hay algunos campos que aparentemente no se usan/cambian como: tipoUso

Fields

nombre_proyecto: String

Nombre del proyecto

tipo_vivienda: String

Tipo de edificio:

  • Vivienda unifamiliar: Unifamiliar
  • Viviendas en bloque: Bloque
  • Una sola vivienda de un bloque: UnaBloque
  • Terciario pequeño o mediano (PMT): Terciario
  • Gran tericario (GT): Gran
tipo_definicion: String

Edificios nuevos

  • Nuevo Edificios Existentes:
  • Ampliacion
  • Cambio (cambio de uso)
  • Reformas:
    • Más del 25% de envolvente
      • CambioMas25ConSistemas (con cambio de sistemas de clima y ACS)
      • CambioMas25ConSistemasClim (con cambio de sistemas de clima)
      • CambioMas25ConSistemasACS (con cambio de sistemas de ACS)
      • CambioMas25SinSistemas (sin cambio de sistemas)
    • Menos del 25% de envolvente
      • CambioMenos25ConSistemas
      • CambioMenos25ConSistemasClim
      • CambioMenos25ConSistemasACS
      • CambioMenos25SinSistemas Sólo certificación de edificios existentes:
  • Certificacion
num_viviendas_bloque: i32

Número de viviendas del edificio

valor_impulsion_aire: f32

Caudal de ventilación l/s

zona_climatica: String

Zona climática (alfa1, A1, …). Este valor no indica si el clima es canario o no

archivo_climatico: String

Zona climática según archivo climático (alfa1c, A1, A1c, …)

valor_n50_medido: Option<f32>

Valor del ensayo de permeabilidad (solo residencial)

bloque_raw: String

Contenido del bloque en texto, sin parsear

Trait Implementations

impl Clone for DatosGenerales[src]

impl Debug for DatosGenerales[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.