-
Notifications
You must be signed in to change notification settings - Fork 464
Catch EMS variables initialized after reference #11409
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
Changes from all commits
8623d71
ead50b6
65966b8
d039752
69e2e71
c1c2bee
68543c1
cf65f57
9f9c099
590e0ad
836fd7e
b0bb17c
bf8e227
9817171
4d1b4aa
0ed3853
e63954f
0388944
fc9f8d1
7ab44a1
00da99c
d60fe2c
58cddd5
fa13d1c
250d892
e729a79
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7949,7 +7949,7 @@ | |
| SET SumReliefMCT = SumReliefMCT + (h_Relief_4 * mdotRelief_4 ); !- <none> | ||
|
|
||
| EnergyManagementSystem:Program, | ||
| IntializeParameters, !- Name | ||
| InitializeParameters, !- Name | ||
| Set CV_Height = 1.0, !- Program Line 1 | ||
| Set CV_effWidth = 40.0, !- Program Line 2 | ||
| Set CV_crossSectArea = CV_Height * CV_effWidth, !- <none> | ||
|
|
@@ -8066,8 +8066,10 @@ | |
|
|
||
| EnergyManagementSystem:GlobalVariable, | ||
| Troof, !- Erl Variable 1 Name | ||
| CV_Height, !- Erl Variable 2 Name | ||
| CV_crossSectArea, !- Erl Variable 3 Name | ||
| DeltaT, !- Erl Variable 2 Name | ||
| ratioT, !- Erl Variable 3 Name | ||
|
Comment on lines
+8069
to
+8070
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So we can avoid EvaluateExpression errors during setup. |
||
| CV_Height, !- <none> | ||
| CV_crossSectArea, !- <none> | ||
| C_v, !- <none> | ||
| rhoAir, !- <none> | ||
| CpAir, !- <none> | ||
|
|
@@ -8101,7 +8103,7 @@ | |
| EnergyManagementSystem:ProgramCallingManager, | ||
| Model Flat Roof Microclimate, !- Name | ||
| BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point | ||
| IntializeParameters, !- Program Name 1 | ||
| InitializeParameters, !- Program Name 1 | ||
| ModelFlatRoofMicroClime, !- Program Name 2 | ||
| ApplyMicroClimeActuators;!- Program Name 3 | ||
|
|
||
|
|
@@ -8115,7 +8117,7 @@ | |
| Run SumReliefAirMCTterm, !- <none> | ||
| Run CalcWindTerms, !- <none> | ||
| Run CalcBouyancyTerms, !- <none> | ||
| SEt Numerator = WindMCT + NatBouyMCT + SumHATroof + QdotCond + SumReliefMCT, !- <none> | ||
| Set Numerator = WindMCT + NatBouyMCT + SumHATroof + QdotCond + SumReliefMCT, !- <none> | ||
| Set Denominator = WindMC + NatBouyMC + SumHAroof + SumIntakeMdotCp, !- <none> | ||
| Set Troof = Numerator / Denominator, !- <none> | ||
| IF Ta < 2.0, !- <none> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7785,6 +7785,11 @@ | |
| EnergyManagementSystem:GlobalVariable, | ||
| natural_vent_program_Qwhf; !- Erl Variable 1 Name | ||
|
|
||
| EnergyManagementSystem:GlobalVariable, | ||
| Qducts, !- Erl Variable 1 Name | ||
| Qsupply, !- Erl Variable 2 Name | ||
| Qexhaust; !- Erl Variable 3 Name | ||
|
Comment on lines
+7788
to
+7791
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So we can avoid EvaluateExpression errors during setup. |
||
|
|
||
| !- =========== ALL OBJECTS IN CLASS: ENERGYMANAGEMENTSYSTEM:OUTPUTVARIABLE =========== | ||
|
|
||
| EnergyManagementSystem:OutputVariable, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we can avoid EvaluateExpression errors during setup.