#include "ConstructionBase.hpp"
Public Member Functions | |
boost::optional< double > | exteriorVisibleAbsorptance () const |
double | getNetArea () const |
boost::optional< double > | heatCapacity () const |
boost::optional< double > | interiorVisibleAbsorptance () const |
bool | isFenestration () const |
bool | isGreenRoof () const |
bool | isModelPartition () const |
bool | isOpaque () const |
bool | isSolarDiffusing () const |
boost::optional< RenderingColor > | renderingColor () const |
void | resetRenderingColor () |
bool | setConductance (double value) |
bool | setConductance (double value, double filmResistance) |
bool | setRenderingColor (const RenderingColor &renderingColor) |
bool | setUFactor (double value) |
bool | setUFactor (double value, double filmResistance) |
boost::optional< double > | thermalConductance () const |
boost::optional< double > | thermalConductance (double filmResistance) const |
boost::optional< double > | uFactor () const |
boost::optional< double > | uFactor (double filmResistance) const |
boost::optional< double > | visibleTransmittance () const |
virtual | ~ConstructionBase ()=default |
ConstructionBase (const ConstructionBase &other)=default | |
ConstructionBase (ConstructionBase &&other)=default | |
ConstructionBase & | operator= (const ConstructionBase &)=default |
ConstructionBase & | operator= (ConstructionBase &&)=default |
StandardsInformationConstruction | standardsInformation () const |
Related Functions | |
using | ConstructionBaseVector = std::vector< ConstructionBase > |
using | OptionalConstructionBase = boost::optional< ConstructionBase > |
ConstructionBase is a ResourceObject that serves as a base class for several objects that can be used to specify a construction for a PlanarSurface.
|
virtualdefault |
|
default |
|
default |
boost::optional<double> openstudio::model::ConstructionBase::exteriorVisibleAbsorptance | ( | ) | const |
Get the visible absorptance of the exterior side of this construction (dimensionless).
May require simulation ('EnvelopeSummary' table).
double openstudio::model::ConstructionBase::getNetArea | ( | ) | const |
Returns the sum of the surface area of all planar surfaces that use this construction (m^2).
If this construction is used by a Surface that contains one or more SubSurfaces , than the SubSurface areas are subtracted out of the total. If two adjacent surfaces both reference the same construction then only the area of the largest adjacent surface will be counted. If two adjacent surfaces reference different constructions then the net area of each adjacent surface will be included in the net area for their respective constructions.
boost::optional<double> openstudio::model::ConstructionBase::heatCapacity | ( | ) | const |
Get the heat capacity of this construction (J/m^2*K).
Only works for LayeredConstructions of StandardOpaqueMaterials .
boost::optional<double> openstudio::model::ConstructionBase::interiorVisibleAbsorptance | ( | ) | const |
Get the visible absorptance of the interior side of this construction (dimensionless).
May require simulation ('EnvelopeSummary' table).
bool openstudio::model::ConstructionBase::isFenestration | ( | ) | const |
bool openstudio::model::ConstructionBase::isGreenRoof | ( | ) | const |
Returns true if the construction has RoofVegetation as the outer layer.
bool openstudio::model::ConstructionBase::isModelPartition | ( | ) | const |
bool openstudio::model::ConstructionBase::isOpaque | ( | ) | const |
bool openstudio::model::ConstructionBase::isSolarDiffusing | ( | ) | const |
Returns true if isFenestration and any material layers are solar diffusing.
|
default |
|
default |
boost::optional<RenderingColor> openstudio::model::ConstructionBase::renderingColor | ( | ) | const |
Returns the rendering color.
void openstudio::model::ConstructionBase::resetRenderingColor | ( | ) |
Resets the rendering color.
bool openstudio::model::ConstructionBase::setConductance | ( | double | value | ) |
Set the conductance of this surface in W/m^2*K, if possible.
value should not include any film coefficients.
bool openstudio::model::ConstructionBase::setConductance | ( | double | value, |
double | filmResistance | ||
) |
Set the conductance of this surface in W/m^2*K, if possible.
filmResistance (m^2*K/W) may be used to convert value to a u-factor.
bool openstudio::model::ConstructionBase::setRenderingColor | ( | const RenderingColor & | renderingColor | ) |
Sets the rendering color.
bool openstudio::model::ConstructionBase::setUFactor | ( | double | value | ) |
Set the u-factor of this surface in W/m^2*K, if possible.
Value should already include appropriate standard film coefficients, assuming still air indoors and 15 mph outdoor air speed. Does not consider any custom SurfacePropertyConvectionCoefficients.
bool openstudio::model::ConstructionBase::setUFactor | ( | double | value, |
double | filmResistance | ||
) |
Set the u-factor of this surface in W/m^2*K, if possible.
filmResistance (m^2*K/W) may be used to convert value to a conductance.
StandardsInformationConstruction openstudio::model::ConstructionBase::standardsInformation | ( | ) | const |
Returns this construction's standards information, constructing a new object if necessary.
boost::optional<double> openstudio::model::ConstructionBase::thermalConductance | ( | ) | const |
Get the thermal conductance of this construction (W/m^2*K).
Does not include film coefficients.
boost::optional<double> openstudio::model::ConstructionBase::thermalConductance | ( | double | filmResistance | ) | const |
Get the thermal conductance of this construction (W/m^2*K).
filmResistance is subtracted out of the thermalResistance if necessary.
boost::optional<double> openstudio::model::ConstructionBase::uFactor | ( | ) | const |
Get the u-factor of this construction (W/m^2*K).
Includes standard film coefficients, does not consider any custom SurfacePropertyConvectionCoefficients.
boost::optional<double> openstudio::model::ConstructionBase::uFactor | ( | double | filmResistance | ) | const |
Get the u-factor of this construction (W/m^2*K).
Includes filmResistance.
boost::optional<double> openstudio::model::ConstructionBase::visibleTransmittance | ( | ) | const |
Get the visible transmittance of this construction (dimensionless).
May require simulation ('EnvelopeSummary' table).
|
related |
|
related |