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

Method getGasEquipmentPowerPerPerson

src/model/SpaceType.cpp:1175–1181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1173 }
1174
1175 double SpaceType_Impl::getGasEquipmentPowerPerPerson(double floorArea, double numPeople) const {
1176 double result(0.0);
1177 for (const GasEquipment& equipment : gasEquipment()) {
1178 result += equipment.getPowerPerPerson(floorArea, numPeople);
1179 }
1180 return result;
1181 }
1182
1183 boost::optional<double> SpaceType_Impl::hotWaterEquipmentPowerPerFloorArea() const {
1184 double result(0.0);

Callers

nothing calls this directly

Calls 1

getPowerPerPersonMethod · 0.45

Tested by

no test coverage detected