Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrap ZoneHVAC:ExhaustControl and AirLoopHVAC:ExhaustSystem #5348

Draft
wants to merge 19 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FT zone similar to zonehvaclowlowtempradiantvarflow.
joseph-robertson committed Jan 17, 2025
commit e4962be537f03789948351bac210d6fb88b48376
Original file line number Diff line number Diff line change
@@ -59,9 +59,13 @@ namespace energyplus {
}

// Zone Name: Required Object
ThermalZone thermalZone = modelObject.thermalZone();
if (boost::optional<IdfObject> wo_ = translateAndMapModelObject(thermalZone)) {
idfObject.setString(ZoneHVAC_ExhaustControlFields::ZoneName, wo_->nameString());
boost::optional<std::string> thermalZoneName;
if (boost::optional<ThermalZone> zone = modelObject.thermalZone()) {
if ((s = zone->name())) {
thermalZoneName = s;

idfObject.setString(ZoneHVAC_ExhaustControlFields::ZoneName, thermalZoneName.get());
}
}

// InletNodeName