Skip to content

Commit

Permalink
Fix Severe Node Connection error
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarrec committed Jan 16, 2025
1 parent 2477a80 commit 73365b1
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ namespace energyplus {
// If BlowThrough: o---- Fan ---- E1 (---- E2) ----o
// If DrawThrough: o---- E1 (---- E2) ---- Fan ----o
std::string baseName = modelObject.nameString();

// if (i_fan_) is always true
{
std::string inletNodeName;
Expand Down Expand Up @@ -209,7 +210,11 @@ namespace energyplus {
}
} else {
inletNodeName = outdoorAirInletNodeName;
outletNodeName = baseName + " First Evaporative Cooler - Fan Node";
if (i_secondEvaporativeCooler_) {
outletNodeName = baseName + " First Evaporative Cooler - Second Evaporative Cooler Node";
} else {
outletNodeName = baseName + " First Evaporative Cooler - Fan Node";
}
}

if (i_firstEvaporativeCooler_->iddObject().type() == IddObjectType::EvaporativeCooler_Direct_ResearchSpecial) {
Expand Down

0 comments on commit 73365b1

Please sign in to comment.