MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / solarTransmittance

Method solarTransmittance

src/model/Shade.cpp:92–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90 }
91
92 double Shade_Impl::solarTransmittance() const {
93 OptionalDouble od = getDouble(OS_WindowMaterial_ShadeFields::SolarTransmittance, true);
94 if (!od) {
95 LOG_AND_THROW("Solar transmittance not yet set for " << briefDescription() << ".");
96 }
97 return *od;
98 }
99
100 double Shade_Impl::solarAbsorptance() const {
101 return 1.0 - solarTransmittance() - solarReflectance();

Callers 4

runMethod · 0.45
osm2iso.rbFile · 0.45
TEST_FFunction · 0.45
translateModelMethod · 0.45

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.36