diff --git a/IBPSA/Fluid/HeatPumps/ModularReversible/Data/TableData2D/Generic.mo b/IBPSA/Fluid/HeatPumps/ModularReversible/Data/TableData2D/Generic.mo index 10d7cf418f..a73de7516f 100644 --- a/IBPSA/Fluid/HeatPumps/ModularReversible/Data/TableData2D/Generic.mo +++ b/IBPSA/Fluid/HeatPumps/ModularReversible/Data/TableData2D/Generic.mo @@ -45,9 +45,11 @@ record Generic "Partial two-dimensional data of refrigerant machines"
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.
The string devIde
ensures that if data for heating and cooling are required,
diff --git a/IBPSA/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/BaseClasses/PartialTableData2D.mo b/IBPSA/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/BaseClasses/PartialTableData2D.mo
index 6b9e9894df..9eb1cb95cf 100644
--- a/IBPSA/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/BaseClasses/PartialTableData2D.mo
+++ b/IBPSA/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/BaseClasses/PartialTableData2D.mo
@@ -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!",