honeybee_energy_standards.extension.material.glazing module

Classmethods for honeybee-energy glazing materials.

honeybee_energy_standards.extension.material.glazing.from_standards_dict(cls, data)[source]

Create EnergyWindowMaterialGlazing from OpenStudio standards gem dictionary.

Parameters

data – An OpenStudio standards dictionary of a glazing material in the format below.

{
"name": 'Blue 6mm',
"material_type": "StandardGlazing",
"thickness": 0.2362204,
"solar_transmittance": 0.45,
"solar_reflectance": 0.36,
"visible_transmittance": 0.714,
"visible_reflectance": 0.207,
"infrared_transmittance": 0,
"emissivity": 0.84,
"emissivity_back": 0.0466,
"conductivity": 6.24012
}
honeybee_energy_standards.extension.material.glazing.simple_from_standards_dict(cls, data)[source]

Create EnergyWindowMaterialSimpleGlazSys from OpenStudio standards dictionary.

Parameters

data – An OpenStudio standards dictionary of a simple glazing material in the format below.

{
"name": 'Fixed Window',
"material_type": "SimpleGlazing",
"u_factor": 0.45,
"solar_heat_gain_coefficient": 0.45,
"visible_transmittance": 0.35
}