Skip to content

Commit

Permalink
Update new ft.
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-robertson committed Feb 3, 2025
1 parent 7ba0733 commit 2a7b8c3
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,7 @@ namespace energyplus {
coilSystemCoolingWaterIdf.setName(*s + " CoilSystem");
}

Schedule sched = modelObject.availabilitySchedule();
translateAndMapModelObject(sched);

coilSystemCoolingWaterIdf.setString(CoilSystem_Cooling_WaterFields::AvailabilityScheduleName, sched.name().get());

OptionalModelObject omo = modelObject.airInletModelObject();
OptionalModelObject omo = modelObject.inletModelObject();
if (omo) {
translateAndMapModelObject(*omo);
s = omo->name();
Expand All @@ -197,7 +192,7 @@ namespace energyplus {
}
}

omo = modelObject.airOutletModelObject();
omo = modelObject.outletModelObject();
if (omo) {
translateAndMapModelObject(*omo);
s = omo->name();
Expand Down

0 comments on commit 2a7b8c3

Please sign in to comment.