-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed radioButtons to enumeration #1426
Changed CalcMethodConvectiveHeatTransfer.mo, CalcMethodConvectiveHeatTransferInsideSurface.mo, CalcMethodLongwaveRadiationHeatTransfer.mo, SurfaceOrientation.mo
- Loading branch information
1 parent
1f18a83
commit 7500d67
Showing
9 changed files
with
72 additions
and
60 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
AixLib/ThermalZones/HighOrder/Components/Types/CalcMethodConvectiveHeatTransfer.mo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
within AixLib.ThermalZones.HighOrder.Components.Types; | ||
type CalcMethodConvectiveHeatTransfer = enumeration( | ||
DIN_6946 | ||
"DIN 6946", | ||
ASHRAE_Fundamentals | ||
"ASHRAE Fundamentals", | ||
Custom_hCon | ||
"Custom hCon (constant)") | ||
"Calculation method for convective heat transfer coefficient at outside surface"; |
11 changes: 11 additions & 0 deletions
11
.../ThermalZones/HighOrder/Components/Types/CalcMethodConvectiveHeatTransferInsideSurface.mo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
within AixLib.ThermalZones.HighOrder.Components.Types; | ||
type CalcMethodConvectiveHeatTransferInsideSurface = enumeration( | ||
EN_ISO_6946_Appendix_A | ||
"EN ISO 6946 Appendix A >>Flat Surfaces<<", | ||
Bernd_Glueck | ||
"By Bernd Glueck", | ||
Custom_hCon | ||
"Custom hCon (constant)", | ||
ASHRAE140_2017 | ||
"ASHRAE140-2017") | ||
"Calculation method for convective heat transfer coefficient at inside surface"; |
11 changes: 11 additions & 0 deletions
11
AixLib/ThermalZones/HighOrder/Components/Types/CalcMethodLongwaveRadiationHeatTransfer.mo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
within AixLib.ThermalZones.HighOrder.Components.Types; | ||
type CalcMethodLongwaveRadiationHeatTransfer = enumeration( | ||
No_Approx | ||
"No approx", | ||
Linear_Wall | ||
"Linear approx at wall temp", | ||
Linear_Rad | ||
"Linear approx at rad temp", | ||
Linear_Constant_Tref | ||
"Linear approx at constant T_ref") | ||
"Calculation method for longwave radiation heat transfer"; |
8 changes: 8 additions & 0 deletions
8
AixLib/ThermalZones/HighOrder/Components/Types/SurfaceOrientation.mo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
within AixLib.ThermalZones.HighOrder.Components.Types; | ||
type SurfaceOrientation = enumeration( | ||
vertical | ||
"vertical", | ||
horizontal_facing_up | ||
"horizontal facing up", | ||
horizontal_facing_down | ||
"horizontal facing down") "Surface Orientation"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters