You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
teaserjson.input calls bldg.central_ahu = BuildingAHU(parent=bldg) even though bldg_in["central_ahu"] throws a KeyError that is catched by the try clause, thus creating a BuildingAHU object for a building that should have bldg.central_ahu = None (because upon export, there was no such object)
Why do we want to solve it?
When exporting to Modelica, the model fails simulating in OpenModelica.
How do we want to solve it?
Let the try clause catch the error before BuildingAHU is called
The text was updated successfully, but these errors were encountered:
What is the problem?
bldg.central_ahu = BuildingAHU(parent=bldg)
even thoughbldg_in["central_ahu"]
throws a KeyError that is catched by the try clause, thus creating aBuildingAHU
object for a building that should havebldg.central_ahu = None
(because upon export, there was no such object)Why do we want to solve it?
How do we want to solve it?
BuildingAHU
is calledThe text was updated successfully, but these errors were encountered: