-
Notifications
You must be signed in to change notification settings - Fork 81
ROM simulation fails for a zone without windows #1545
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
Comments
Hey @PGorzalka, thanks for posting this issue. Your approach would work, but wouldn't it be more elegant to make the input
Maybe I'm missing something? |
Hey @DaJansenGit , this could indeed be a more elegant solution, but So I'd rather go with the solution proposed in my first post. |
Yes, I agree that making those changes regarding the orientation and that it is an IBPSA model is not the best solution. Please go ahead with your proposed solution. |
If a TEASER model with no window area is exported to AixLib, simulation fails due
eqAirTempWall.sunblind
not being connected from the outside inThermalZone
. The reason is thateqAirTempWall
is conditional to(sum(zoneParam.AExt) + sum(zoneParam.AWin)) > 0
, but the input fromsimpleExternalShading
is conditional tosum(zoneParam.ATransparent) > 0
.I suggest removing the conditionality of
simpleExternalShading
andcorGMod
inAixLib.ThermalZones.ReducedOrder.ThermalZone.ThermalZone
.The text was updated successfully, but these errors were encountered: