Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
issue1337_Changing T_setpoint in PartialZone and PartialSurface for Heat Losses Calculation #1380
issue1337_Changing T_setpoint in PartialZone and PartialSurface for Heat Losses Calculation #1380
Changes from 2 commits
b475a32
dcb5db1
5a4693c
1f0d7dc
e7b9981
0d0e788
96a3b88
0f8a8bc
bdfab9c
8952d6b
4e5d92b
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Maybe
TZonSet
,TSetDes
(, orTZonSetDes
) might be slightly clearer (redundant if we useTRef_a
).Furthermore, if you set a temperature parameter, please use
293.15
instead of273.15+21
, because the dialog pane of the components typically displays temperatures in°C
, which leads to(273.15 + 21) - 273.15
in your implementation (Dymola doesn't automatically computes this, I think because of the brackets' instead of21
.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.
You don't need to mention the
(in K)
part as Modelica always uses SI units (thus Kelvin). It's true that you can change thedisplayUnit
to°C
, but internally Modelica always uses Kelvin.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.
This is a GUI change which seems unintended. Could you change it back to the original one?
If this doesn't work in Dymola, you can use a text editor as well to only change the desired code.