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

Method isDesignOutdoorAirFlowRateAutosized

src/model/SizingSystem.cpp:77–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75 }
76
77 bool SizingSystem_Impl::isDesignOutdoorAirFlowRateAutosized() const {
78 bool result = false;
79 boost::optional<std::string> value = getString(OS_Sizing_SystemFields::DesignOutdoorAirFlowRate, true);
80 if (value) {
81 result = openstudio::istringEqual(value.get(), "Autosize");
82 }
83 return result;
84 }
85
86 boost::optional<double> SizingSystem_Impl::centralHeatingMaximumSystemAirFlowRatio() const {
87 return getDouble(OS_Sizing_SystemFields::CentralHeatingMaximumSystemAirFlowRatio, true);

Callers 3

TEST_FFunction · 0.80
translateSizingSystemMethod · 0.80
TEST_FFunction · 0.80

Calls 2

istringEqualFunction · 0.85
getMethod · 0.45

Tested by 2

TEST_FFunction · 0.64
TEST_FFunction · 0.64