Skip to content

Commit

Permalink
Space IV.5 - space volume for OA calcs
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwitte committed Aug 30, 2024
1 parent 0e8b750 commit d6f0d27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tst/EnergyPlus/unit/DataSizing.unit.cc
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ TEST_F(EnergyPlusFixture, OARequirements_calcDesignSpecificationOutdoorAir)
},
"Space 1d" : {
"zone_name": "Zone 1",
"floor_area": 100.0
"floor_area": 100.0,
"volume": 300.0
}
},
"DesignSpecification:OutdoorAir": {
Expand Down Expand Up @@ -392,6 +393,7 @@ TEST_F(EnergyPlusFixture, OARequirements_calcDesignSpecificationOutdoorAir)
thisSpaceName = "SPACE 1D";
spaceNum = Util::FindItemInList(thisSpaceName, state->dataHeatBal->space);
state->dataHeatBal->space(spaceNum).FloorArea = 100.0;
state->dataHeatBal->space(spaceNum).Volume = 300.0;

std::string thisZoneName = "ZONE 2";
zoneNum = Util::FindItemInList(thisZoneName, state->dataHeatBal->Zone);
Expand Down

0 comments on commit d6f0d27

Please sign in to comment.