Skip to content

Commit

Permalink
unused and unused outer shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
rraustad committed Aug 22, 2024
1 parent 90cda87 commit b880941
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions src/EnergyPlus/EconomicTariff.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3879,9 +3879,6 @@ void LEEDtariffReporting(EnergyPlusData &state)
Real64 distHeatWaterTotalCost;
Real64 distHeatSteamTotalCost;
Real64 allTotalCost;
std::string distCoolTariffNames;
std::string distHeatWaterTariffNames;
std::string distHeatSteamTariffNames;
EconConv elecUnits;
EconConv gasUnits;
EconConv distCoolUnits;
Expand Down
8 changes: 0 additions & 8 deletions src/EnergyPlus/EvaporativeCoolers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3370,7 +3370,6 @@ void GetInputZoneEvaporativeCoolerUnit(EnergyPlusData &state)
int NumNumbers; // Number of Numbers for each GetObjectItem call
int NumFields; // Total number of fields in object
bool ErrorsFound(false); // Set to true if errors in input, fatal at end of routine
Real64 FanVolFlow;

auto &EvapCond(state.dataEvapCoolers->EvapCond);
auto &ZoneEvapUnit(state.dataEvapCoolers->ZoneEvapUnit);
Expand Down Expand Up @@ -3468,7 +3467,6 @@ void GetInputZoneEvaporativeCoolerUnit(EnergyPlusData &state)
}

thisZoneEvapUnit.FanName = Alphas(8);
bool errFlag = false;

thisZoneEvapUnit.fanType = static_cast<HVAC::FanType>(getEnumValue(HVAC::fanTypeNamesUC, Alphas(7)));
assert(thisZoneEvapUnit.fanType != HVAC::FanType::Invalid);
Expand All @@ -3490,12 +3488,6 @@ void GetInputZoneEvaporativeCoolerUnit(EnergyPlusData &state)
// with used for ZONECOOLINGLOADVARIABLESPEEDFAN Cooler Unit Control Method
thisZoneEvapUnit.fanOp = HVAC::FanOp::Cycling;

FanVolFlow = 0.0;
if (errFlag) {
ShowContinueError(state, format("specified in {} = {}", CurrentModuleObject, thisZoneEvapUnit.Name));
ErrorsFound = true;
}

thisZoneEvapUnit.DesignAirVolumeFlowRate = Numbers(1);

thisZoneEvapUnit.fanPlace = static_cast<HVAC::FanPlace>(getEnumValue(HVAC::fanPlaceNamesUC, Alphas(9)));
Expand Down

0 comments on commit b880941

Please sign in to comment.