Skip to content

Commit

Permalink
update description of m_flow warning
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian.wuellhorst committed Nov 10, 2023
1 parent f7dba66 commit 1a19741
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ record Generic "Partial two-dimensional data of refrigerant machines"
</p>
<p>
The nominal mass flow rates in the condenser and evaporator
are also defined as parameters. These will be used in the model to assert that
the mass flow rates in the simulation do not deviate to much from the ones
where the normative data is for.
are also defined as parameters. If nominal pressure curves are provided
in the datasheets, be sure to match the two parameters.
Aside from that, the nominal mass flow rates are compared to the values specified
by the user. If the deviation is too great, a warning indicates a possible mismatch of
system mass flow rate and table data.
</p>
<p>
The string <code>devIde</code> ensures that if data for heating and cooling are required,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ protected
extrapolation,
false) "External table object for nominal electrical power consumption";
initial algorithm
assert(perDevMasFloCon < 1,
assert(perDevMasFloCon < 10,
"The deviation of the given mCon_flow_nominal to the table data is " +
String(perDevMasFloCon) + " %. Carefully check results,
you are extrapolating the table data!",
AssertionLevel.warning);
assert(perDevMasFloEva < 1,
assert(perDevMasFloEva < 10,
"The deviation of the given mEva_flow_nominal to the table data is " +
String(perDevMasFloEva) + " %. Carefully check results,
you are extrapolating the table data!",
Expand Down

0 comments on commit 1a19741

Please sign in to comment.