| 860 | } |
| 861 | |
| 862 | double SpaceType_Impl::getLightingPower(double floorArea, double numPeople) const { |
| 863 | double result(0.0); |
| 864 | for (const Lights& lightsObject : lights()) { |
| 865 | result += lightsObject.getLightingPower(floorArea, numPeople); |
| 866 | } |
| 867 | for (const Luminaire& luminaire : luminaires()) { |
| 868 | result += luminaire.lightingPower(); |
| 869 | } |
| 870 | return result; |
| 871 | } |
| 872 | |
| 873 | double SpaceType_Impl::getLightingPowerPerFloorArea(double floorArea, double numPeople) const { |
| 874 | double result(0.0); |
nothing calls this directly
no test coverage detected