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

Method getHotWaterEquipmentPowerPerPerson

src/model/SpaceType.cpp:1307–1313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1305 }
1306
1307 double SpaceType_Impl::getHotWaterEquipmentPowerPerPerson(double floorArea, double numPeople) const {
1308 double result(0.0);
1309 for (const HotWaterEquipment& equipment : hotWaterEquipment()) {
1310 result += equipment.getPowerPerPerson(floorArea, numPeople);
1311 }
1312 return result;
1313 }
1314
1315 double SpaceType_Impl::floorArea() const {
1316 double result = 0;

Callers

nothing calls this directly

Calls 1

getPowerPerPersonMethod · 0.45

Tested by

no test coverage detected