diff --git a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo
index 335c0fa6cb..0e6f795b48 100644
--- a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo
+++ b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der.mo
@@ -11,7 +11,7 @@ function basicFlowFunction_dp_der
"Mass flow rate where transition to turbulent flow occurs";
input Real dp_der
"Derivative of pressure difference between port_a and port_b (= port_a.p - port_b.p)";
- output Real m_flow_der(unit="kg/s2")
+ output Real m_flow_der
"Derivative of mass flow rate in design flow direction";
protected
Modelica.Units.SI.PressureDifference dp_turbulent=(m_flow_turbulent/k)^2
@@ -30,8 +30,14 @@ Documentation(info="
Function that implements the first order derivative of
-IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp
-with respect to the mass flow rate.
+IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp,
+assuming a constant flow coefficient.
+
+
+When called with dp_der=der(dp)
, this function returns
+the time derivative of m_flow
.
+When called with dp_der=1
, this function returns
+the derivative of m_flow
with respect to dp
.
",
revisions="
diff --git a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo
index e64a9fbdb6..eb9fbdfb33 100644
--- a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo
+++ b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_dp_der2.mo
@@ -1,6 +1,6 @@
within IBPSA.Fluid.BaseClasses.FlowModels;
function basicFlowFunction_dp_der2
- "2nd derivative of flow function2nd derivative of function that computes mass flow rate for given pressure drop"
+ "2nd derivative of function that computes mass flow rate for given pressure drop"
extends Modelica.Icons.Function;
input Modelica.Units.SI.PressureDifference dp(displayUnit="Pa")
@@ -35,8 +35,16 @@ Documentation(info="
Function that implements the second order derivative of
-IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp
-with respect to the mass flow rate.
+IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp,
+assuming a constant flow coefficient.
+
+
+When called with dp_der=der(dp)
and dp_der2=der(dp_der)
,
+this function returns the second order derivative of m_flow
+with respect to time.
+When called with dp_der=1
and dp_der2=0
,
+this function returns the second order derivative of m_flow
+with respect to dp
.
",
revisions="
diff --git a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo
index 05c27661a2..bd6e5449e3 100644
--- a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo
+++ b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der.mo
@@ -9,7 +9,7 @@ function basicFlowFunction_m_flow_der
"Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)";
input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0)
"Mass flow rate where transition to turbulent flow occurs";
- input Real m_flow_der(unit="kg/s2")
+ input Real m_flow_der
"Derivative of mass flow rate in design flow direction";
output Real dp_der
"Derivative of pressure difference between port_a and port_b (= port_a.p - port_b.p)";
@@ -31,8 +31,14 @@ Documentation(info="
Function that implements the first order derivative of
-IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow
-with respect to the mass flow rate.
+IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow,
+assuming a constant flow coefficient.
+
+
+When called with m_flow_der=der(m_flow)
, this function returns
+the time derivative of dp
.
+When called with m_flow_der=1
, this function returns
+the derivative of dp
with respect to m_flow
.
",
revisions="
diff --git a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo
index 6c70c3ef0e..df610a653a 100644
--- a/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo
+++ b/IBPSA/Fluid/BaseClasses/FlowModels/basicFlowFunction_m_flow_der2.mo
@@ -9,9 +9,9 @@ function basicFlowFunction_m_flow_der2
"Flow coefficient, k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2)";
input Modelica.Units.SI.MassFlowRate m_flow_turbulent(min=0)
"Mass flow rate where transition to turbulent flow occurs";
- input Real m_flow_der(unit="kg/s2")
+ input Real m_flow_der
"1st derivative of mass flow rate in design flow direction";
- input Real m_flow_der2(unit="kg/s3")
+ input Real m_flow_der2
"2nd derivative of mass flow rate in design flow direction";
output Real dp_der2
"2nd derivative of pressure difference between port_a and port_b (= port_a.p - port_b.p)";
@@ -35,8 +35,16 @@ Documentation(info="
Function that implements the second order derivative of
-IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow
-with respect to the mass flow rate.
+IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_m_flow,
+assuming a constant flow coefficient.
+
+
+When called with m_flow_der=der(m_flow)
and m_flow_der2=der(m_flow_der)
,
+this function returns the second order derivative of dp
+with respect to time.
+When called with m_flow_der=1
and m_flow_der2=0
,
+this function returns the second order derivative of dp
+with respect to m_flow
.
",
revisions="
diff --git a/IBPSA/Fluid/FixedResistances/CheckValve.mo b/IBPSA/Fluid/FixedResistances/CheckValve.mo
index 883f7acc25..2ba8be8f9f 100644
--- a/IBPSA/Fluid/FixedResistances/CheckValve.mo
+++ b/IBPSA/Fluid/FixedResistances/CheckValve.mo
@@ -27,48 +27,85 @@ model CheckValve "Check valve that avoids flow reversal"
else 0
"Flow coefficient of fixed resistance that may be in series with valve,
k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2).";
-
- Real k(min=Modelica.Constants.small)
- "Flow coefficient of valve and pipe in series in allowed/forward direction,
- k=m_flow/sqrt(dp), with unit=(kg.m)^(1/2).";
-
protected
- Real a
- "Scaled pressure variable";
- Real cv
- "Twice differentiable Heaviside check valve characteristic";
- Real kCv
- "Smoothed restriction characteristic";
-
+ parameter Real k_min=if dpFixed_nominal > Modelica.Constants.eps then
+ sqrt(1 / (1 / kFixed ^ 2 + 1 /(l * Kv_SI) ^ 2)) else l * Kv_SI
+ "Minimum flow coefficient (valve closed)";
+ parameter Real k_max=if dpFixed_nominal > Modelica.Constants.eps then
+ sqrt(1 / (1 / kFixed ^ 2 + 1 / Kv_SI ^ 2)) else Kv_SI
+ "Maximum flow coefficient (valve fully open)";
+ parameter Modelica.Units.SI.MassFlowRate m1_flow = 0
+ "Flow rate through closed valve with zero pressure drop";
+ parameter Modelica.Units.SI.MassFlowRate m2_flow =
+ IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp(
+ dp=dpValve_closing,
+ k=k_max,
+ m_flow_turbulent=m_flow_turbulent)
+ "Flow rate through fully open valve exposed to dpValve_closing";
+ parameter Real dm1_flow_dp =
+ IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der(
+ dp=0,
+ k=k_min,
+ m_flow_turbulent=m_flow_turbulent,
+ dp_der=1)
+ "Derivative of closed valve flow function at dp=0";
+ parameter Real dm2_flow_dp =
+ IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der(
+ dp=dpValve_closing,
+ k=k_max,
+ m_flow_turbulent=m_flow_turbulent,
+ dp_der=1)
+ "Derivative of open valve flow function at dp=dpValve_closing";
+ parameter Real d2m1_flow_dp =
+ IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der2(
+ dp=0,
+ k=k_min,
+ m_flow_turbulent=m_flow_turbulent,
+ dp_der=1,
+ dp_der2=0)
+ "Second derivative of closed valve flow function at dp=0";
+ parameter Real d2m2_flow_dp =
+ IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp_der2(
+ dp=dpValve_closing,
+ k=k_max,
+ m_flow_turbulent=m_flow_turbulent,
+ dp_der=1,
+ dp_der2=0)
+ "Second derivative of open valve flow function at dp=dpValve_closing";
+ Modelica.Units.SI.MassFlowRate m_flow_smooth
+ "Smooth interpolation result between two flow regimes";
initial equation
- assert(dpFixed_nominal > -Modelica.Constants.eps,
- "In " + getInstanceName() + ": We require dpFixed_nominal >= 0.
+ assert(dpFixed_nominal > - Modelica.Constants.eps, "In " + getInstanceName() +
+ ": We require dpFixed_nominal >= 0.
Received dpFixed_nominal = " + String(dpFixed_nominal) + " Pa.");
- assert(l > -Modelica.Constants.eps,
- "In " + getInstanceName() + ": We require l >= 0. Received l = " + String(l));
+ assert(l > - Modelica.Constants.eps, "In " + getInstanceName() +
+ ": We require l >= 0. Received l = " + String(l));
equation
- a = dp/dpValve_closing;
- cv = smooth(2, max(0, min(1, a^3*(10+a*(-15+6*a)))));
- kCv = Kv_SI*(cv*(1-l) + l);
-
- if (dpFixed_nominal > Modelica.Constants.eps) then
- k = sqrt(1/(1/kFixed^2 + 1/kCv^2));
- else
- k = kCv;
- end if;
-
+ m_flow_smooth=noEvent(smooth(2,
+ if dp <= 0 then IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp(
+ dp=dp,
+ k=k_min,
+ m_flow_turbulent=m_flow_turbulent)
+ elseif dp >= dpValve_closing then IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp(
+ dp=dp,
+ k=k_max,
+ m_flow_turbulent=m_flow_turbulent)
+ else IBPSA.Utilities.Math.Functions.quinticHermite(
+ x=dp,
+ x1=0,
+ x2=dpValve_closing,
+ y1=0,
+ y2=m2_flow,
+ y1d=dm1_flow_dp,
+ y2d=dm2_flow_dp,
+ y1dd=d2m1_flow_dp,
+ y2dd=d2m2_flow_dp)));
if homotopyInitialization then
- m_flow = homotopy(
- actual=IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp(
- dp = dp,
- k = k,
- m_flow_turbulent = m_flow_turbulent),
- simplified = m_flow_nominal_pos*dp/dp_nominal_pos);
+ m_flow=homotopy(
+ actual=m_flow_smooth,
+ simplified=m_flow_nominal_pos * dp / dp_nominal_pos);
else
- m_flow = IBPSA.Fluid.BaseClasses.FlowModels.basicFlowFunction_dp(
- dp = dp,
- k = k,
- m_flow_turbulent = m_flow_turbulent);
+ m_flow=m_flow_smooth;
end if;
annotation (Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,-100},
{100,100}}), graphics={
@@ -103,7 +140,7 @@ defaultComponentName="cheVal",
Documentation(info="
Implementation of a hydraulic check valve.
-Note that the small reverse flows can still occur with this model.
+Note that small reverse flows can still occur with this model.
Main equations
@@ -113,26 +150,22 @@ The basic flow function
ṁ = sign(Δp) k √ Δp ,
-with regularization near the origin, is used to compute the pressure drop.
-The flow coefficient
-
-
- k = ṁ ⁄ √ Δp
-
-
-is increased from l*KV_Si
to KV_Si
,
-where KV_Si
is equal to Kv
but in SI units.
-Therefore, the flow coefficient k
is set to a value close to zero for negative pressure differences, thereby
-restricting reverse flow to a small value.
-The flow coefficient k
saturates to its maximum value at the pressure dpValve_closing
.
-For larger pressure drops, the pressure drop is a quadratic function of the flow rate.
+with regularization near the origin, is used to compute the mass flow rate
+through the fully closed and fully open valve, respectively.
+The valve is considered fully closed when subjected to a negative pressure drop,
+and its flow coefficient k is then equal to l * Kv_SI
,
+where Kv_SI
is equal to Kv
but in SI units.
+The valve is considered fully open when the pressure drop exceeds
+dpValve_closing
,
+and its flow coefficient k is then equal to Kv_SI
.
+For valve positions between these two extremes, a quintic spline interpolation
+is applied to determine the mass flow rate as a function of
+the pressure drop across the valve.
Typical use and important parameters
The parameters m_flow_nominal
and dpValve_nominal
-determine the flow coefficient of the check valve when it is fully opened.
-A typical value for a nominal flow rate of 1 m/s is
-dpValve_nominal = 3400 Pa
.
+determine the flow coefficient of the check valve when it is fully open.
The leakage ratio l
determines the minimum flow coefficient,
for negative pressure differences.
The parameter dpFixed_nominal
allows to include a series
@@ -156,8 +189,13 @@ by default.
", revisions="
-
+October 14, 2024, by Antoine Gautier:
+Refactored using a spline interpolation. This is for
+issue 1937.
+
+-
February 3, 2023, by Michael Wetter:
-Corrected grahpical annotation.
+Corrected graphical annotation.
-
September 16, 2019, by Kristoff Six and Filip Jorissen:
diff --git a/IBPSA/Resources/ReferenceResults/Dymola/IBPSA_Fluid_FixedResistances_Examples_CheckValve.txt b/IBPSA/Resources/ReferenceResults/Dymola/IBPSA_Fluid_FixedResistances_Examples_CheckValve.txt
index 6d707d7536..378082829f 100644
--- a/IBPSA/Resources/ReferenceResults/Dymola/IBPSA_Fluid_FixedResistances_Examples_CheckValve.txt
+++ b/IBPSA/Resources/ReferenceResults/Dymola/IBPSA_Fluid_FixedResistances_Examples_CheckValve.txt
@@ -1,4 +1,4 @@
-last-generated=2019-11-12
+last-generated=2024-10-14
statistics-initialization=
{
"nonlinear": "1",
@@ -10,12 +10,9 @@ statistics-simulation=
"nonlinear": "1",
"numerical Jacobians": "0"
}
-checkValve_m_flow.dp=[0e+00, 3.960315884060042e+02, 4.979421423140869e+02, 5.719583783842938e+02, 6.329558765751018e+02, 6.862586631956844e+02, 7.344693665035837e+02, 7.790868517328123e+02, 8.210711132373215e+02, 8.610861675664777e+02, 8.996207829058955e+02, 9.370541403838025e+02, 9.736955663731899e+02, 1.009809709502961e+03, 1.045634031071492e+03, 1.081392678865522e+03, 1.117307874241905e+03, 1.153611199524893e+03, 1.190556369828231e+03, 1.228435067793452e+03, 1.267598498888221e+03, 1.308490872376382e+03, 1.351700811020757e+03, 1.398052470264349e+03, 1.448769682342921e+03, 1.5058056640625e+03, 1.572553172094486e+03, 1.655370751378253e+03, 1.764267563724527e+03, 1.892250109272729e+03, 2.024999839604022e+03, 2.162249966847894e+03, 2.304000103318098e+03, 2.450249805861401e+03, 2.600999945443962e+03, 2.756250094145607e+03, 2.91599976890092e+03, 3.080249920821444e+03, 3.249000081753658e+03, 3.422250251697565e+03, 3.59999989298034e+03, 3.782250066143122e+03, 3.969000248424991e+03, 4.160249861920649e+03, 4.356000047314002e+03, 4.556250241933832e+03, 4.760999827641354e+03, 4.970250025266439e+03, 5.184000232225395e+03, 5.402249790145509e+03, 5.625e+03, 5.852250219294815e+03, 6.084000447171622e+03, 6.320250683630421e+03, 6.560999479555489e+03, 6.806249705497506e+03, 7.055999940024965e+03, 7.310250183782338e+03, 7.569000436334702e+03, 7.832250697469057e+03, 8.099999357351735e+03, 8.372249607978039e+03, 8.648999867179351e+03, 8.930250135395712e+03, 9.216000412627123e+03, 9.506250698433543e+03, 9.800999222285474e+03, 1.010024949757744e+04, 1.040399978145605e+04, 1.071225007413772e+04, 1.102500037603841e+04, 1.134225068652911e+04, 1.166399907433225e+04, 1.199024937430152e+04, 1.232099968286209e+04, 1.265625e+04, 1.299600032658136e+04, 1.334025066174005e+04, 1.368900100549005e+04, 1.404224923816076e+04, 1.439999957138933e+04, 1.476224991320311e+04, 1.51290002642455e+04, 1.550025062408615e+04, 1.587600099251346e+04, 1.625624908913537e+04, 1.664099944704124e+04, 1.703024981353375e+04, 1.742400018903665e+04, 1.782225057354995e+04, 1.82250009666499e+04, 1.863224892723467e+04, 1.904399930981784e+04, 1.946024970099464e+04, 1.988100010095899e+04, 2.030625051014659e+04, 2.073600092792384e+04, 2.117024875245865e+04, 2.160899915973774e+04, 2.205224957557555e+04, 2.25e+04]
-checkValve.dp=[-2e+05, -1.959999999105931e+05, -1.919999998211861e+05, -1.879999997317794e+05, -1.839999996423722e+05, -1.800000002980232e+05, -1.759999994635583e+05, -1.720000001192095e+05, -1.679999992847457e+05, -1.640000014305086e+05, -1.600000005960452e+05, -1.559999997615819e+05, -1.519999989271186e+05, -1.479999980926552e+05, -1.440000002384181e+05, -1.40000002384181e+05, -1.359999985694914e+05, -1.320000007152543e+05, -1.280000028610172e+05, -1.239999990463276e+05, -1.200000011920905e+05, -1.159999973774009e+05, -1.119999995231638e+05, -1.080000016689267e+05, -1.039999978542371e+05, -1e+05, -9.599999618531046e+04, -9.200000429152572e+04, -8.800000047683618e+04, -8.399999666214666e+04, -8.000000476836192e+04, -7.600000095367238e+04, -7.199999713898284e+04, -6.80000052451981e+04, -6.400000143050856e+04, -5.999999761581905e+04, -5.600000572203431e+04, -5.200000190734477e+04, -4.799999809265523e+04, -4.399999427796569e+04, -4.000000238418095e+04, -3.599999856949144e+04, -3.19999947548019e+04, -2.800000286101715e+04, -2.399999904632762e+04, -1.999999523163808e+04, -1.600000333785334e+04, -1.199999952316382e+04, -7.99999570847428e+03, -4.000003814689539e+03, 1.164153218269348e-10, 4.000003814632696e+03, 8.000007629265392e+03, 1.200001144389809e+04, 1.599999141707646e+04, 1.999999523170915e+04, 2.399999904631343e+04, 2.80000028609745e+04, 3.20000066756072e+04, 3.600001049023989e+04, 3.999999046341826e+04, 4.399999427805096e+04, 4.799999809268365e+04, 5.200000190731635e+04, 5.600000572194904e+04, 6.000000953658174e+04, 6.399998950976011e+04, 6.799999332439281e+04, 7.199999713902549e+04, 7.600000095368657e+04, 8.000000476829085e+04, 8.400000858292355e+04, 8.799998855610192e+04, 9.19999923707346e+04, 9.59999961853673e+04, 1e+05, 1.040000038146327e+05, 1.080000076292654e+05, 1.120000114438981e+05, 1.159999914170765e+05, 1.199999952317092e+05, 1.239999990463134e+05, 1.280000028609745e+05, 1.320000066756072e+05, 1.360000104902399e+05, 1.399999904634182e+05, 1.43999994278051e+05, 1.479999980926836e+05, 1.520000019073164e+05, 1.56000005721949e+05, 1.600000095365818e+05, 1.639999895097601e+05, 1.679999933243928e+05, 1.719999971390255e+05, 1.760000009536866e+05, 1.800000047682908e+05, 1.840000085829235e+05, 1.879999885561019e+05, 1.919999923707346e+05, 1.959999961853673e+05, 2e+05]
time=[0e+00, 1e+00]
-checkValveDpFix.m_flow=[-7.752520032227039e-03, -7.599784523558206e-03, -7.446909782158223e-03, -7.293898136333848e-03, -7.140752845714168e-03, -6.987476267168542e-03, -6.834071574638226e-03, -6.680541210728288e-03, -6.526887855012931e-03, -6.373114938909741e-03, -6.219224561592291e-03, -6.065219631548481e-03, -5.911103408406907e-03, -5.756878220479694e-03, -5.602546976767384e-03, -5.448112822010223e-03, -5.293577854182275e-03, -5.13894579345031e-03, -4.984218737908994e-03, -4.829399250776375e-03, -4.67449151871845e-03, -4.519496942729751e-03, -4.364419244363853e-03, -4.20926098667588e-03, -4.054024732261188e-03, -3.898714203387499e-03, -3.743331032660968e-03, -3.587879407322825e-03, -3.432360729118528e-03, -3.276778953676437e-03, -3.121136873263832e-03, -2.965436586984429e-03, -2.809681585389971e-03, -2.653874894049948e-03, -2.49801884391909e-03, -2.342116693226281e-03, -2.186171467934309e-03, -2.030185265347777e-03, -1.874161693365501e-03, -1.71810331313372e-03, -1.562013616696936e-03, -1.40589458406368e-03, -1.2497494743465e-03, -1.09358166339218e-03, -9.373931889544362e-04, -7.811873685991841e-04, -6.249675201043239e-04, -4.687356518131292e-04, -3.124951105628847e-04, -1.562492287461338e-04, 4.547460986276609e-18, 1.084652798285731e+00, 1.53393065803649e+00, 1.878673719564719e+00, 2.169304019994485e+00, 2.425355857604131e+00, 2.656844562701449e+00, 2.869720366144158e+00, 3.067860206100095e+00, 3.253957266227621e+00, 3.429971284003748e+00, 3.597384456255098e+00, 3.757345601458287e+00, 3.910769534033575e+00, 4.058397499694961e+00, 4.200840805913738e+00, 4.338608861907587e+00, 4.472135800495924e+00, 4.601789859640423e+00, 4.727889567398091e+00, 4.850712443547709e+00, 4.97050167621754e+00, 5.08746972307351e+00, 5.201809190129118e+00, 5.313689126079652e+00, 5.423261642456055e+00, 5.530663114694668e+00, 5.636018951750249e+00, 5.739440733831591e+00, 5.841031334895346e+00, 5.940884948756617e+00, 6.039088225945917e+00, 6.135719844618598e+00, 6.230853238066126e+00, 6.324555640593955e+00, 6.416889448639107e+00, 6.507913459999518e+00, 6.597682433472111e+00, 6.686245960167954e+00, 6.773651723949516e+00, 6.859943594076367e+00, 6.945163027574508e+00, 7.029350140936665e+00, 7.11254066267086e+00, 7.194769401947633e+00, 7.276068783704507e+00, 7.356469802585306e+00, 7.436001074249104e+00, 7.514691203389503e+00, 7.592565939375051e+00, 7.669650077819824e+00]
+checkValve.dp=[-2e+05, -1.959999999105931e+05, -1.919999998211861e+05, -1.879999997317794e+05, -1.839999996423722e+05, -1.800000002980232e+05, -1.759999994635583e+05, -1.720000001192095e+05, -1.679999992847457e+05, -1.640000014305086e+05, -1.600000005960452e+05, -1.559999997615819e+05, -1.519999989271186e+05, -1.479999980926552e+05, -1.440000002384181e+05, -1.40000002384181e+05, -1.359999985694914e+05, -1.320000007152543e+05, -1.280000028610172e+05, -1.239999990463276e+05, -1.200000011920905e+05, -1.159999973774009e+05, -1.119999995231638e+05, -1.080000016689267e+05, -1.039999978542371e+05, -1e+05, -9.599999618531046e+04, -9.200000429152572e+04, -8.800000047683618e+04, -8.399999666214666e+04, -8.000000476836192e+04, -7.600000095367238e+04, -7.199999713898284e+04, -6.80000052451981e+04, -6.400000143050856e+04, -5.999999761581905e+04, -5.600000572203431e+04, -5.200000190734477e+04, -4.799999809265523e+04, -4.399999427796569e+04, -4.000000238418095e+04, -3.599999856949144e+04, -3.19999947548019e+04, -2.800000286101715e+04, -2.399999904632762e+04, -1.999999523163808e+04, -1.600000333785334e+04, -1.199999952316382e+04, -7.99999570847428e+03, -4.000003814689539e+03, 0e+00, 4.000003814632696e+03, 8.000007629265392e+03, 1.200001144389809e+04, 1.599999141707646e+04, 1.999999523170915e+04, 2.399999904631343e+04, 2.80000028609745e+04, 3.20000066756072e+04, 3.600001049023989e+04, 3.999999046341826e+04, 4.399999427805096e+04, 4.799999809268365e+04, 5.200000190731635e+04, 5.600000572194904e+04, 6.000000953658174e+04, 6.399998950976011e+04, 6.799999332439281e+04, 7.199999713902549e+04, 7.600000095368657e+04, 8.000000476829085e+04, 8.400000858292355e+04, 8.799998855610192e+04, 9.19999923707346e+04, 9.59999961853673e+04, 1e+05, 1.040000038146327e+05, 1.080000076292654e+05, 1.120000114438981e+05, 1.159999914170765e+05, 1.199999952317092e+05, 1.239999990463134e+05, 1.280000028609745e+05, 1.320000066756072e+05, 1.360000104902399e+05, 1.399999904634182e+05, 1.43999994278051e+05, 1.479999980926836e+05, 1.520000019073164e+05, 1.56000005721949e+05, 1.600000095365818e+05, 1.639999895097601e+05, 1.679999933243928e+05, 1.719999971390255e+05, 1.760000009536866e+05, 1.800000047682908e+05, 1.840000085829235e+05, 1.879999885561019e+05, 1.919999923707346e+05, 1.959999961853673e+05, 2e+05]
+checkValve_m_flow.dp=[0e+00, 3.253773523976561e+02, 4.222576939576101e+02, 4.945212750578851e+02, 5.550939381046511e+02, 6.087020225317126e+02, 6.576890321642276e+02, 7.034207750360397e+02, 7.467816237616745e+02, 7.883903051518797e+02, 8.287080018678728e+02, 8.680974754672669e+02, 9.068595073977131e+02, 9.452559997003622e+02, 9.835265480115605e+02, 1.021901954607473e+03, 1.060615370401153e+03, 1.099914299560223e+03, 1.140073701446469e+03, 1.181413828423314e+03, 1.224322740898865e+03, 1.269293243362892e+03, 1.316977911196055e+03, 1.368283791349329e+03, 1.42453909470838e+03, 1.4878076171875e+03, 1.561495317651149e+03, 1.65132765350144e+03, 1.764178452215886e+03, 1.892250109272729e+03, 2.024999839604022e+03, 2.162249966847894e+03, 2.304000103318098e+03, 2.450249805861401e+03, 2.600999945443962e+03, 2.756250094145607e+03, 2.91599976890092e+03, 3.080249920821444e+03, 3.249000081753658e+03, 3.422250251697565e+03, 3.59999989298034e+03, 3.782250066143122e+03, 3.969000248424991e+03, 4.160249861920649e+03, 4.356000047314002e+03, 4.556250241933832e+03, 4.760999827641354e+03, 4.970250025266439e+03, 5.184000232225395e+03, 5.402249790145509e+03, 5.625e+03, 5.852250219294815e+03, 6.084000447171622e+03, 6.320250683630421e+03, 6.560999479555489e+03, 6.806249705497506e+03, 7.055999940024965e+03, 7.310250183782338e+03, 7.569000436334702e+03, 7.832250697469057e+03, 8.099999357351735e+03, 8.372249607978039e+03, 8.648999867179351e+03, 8.930250135395712e+03, 9.216000412627123e+03, 9.506250698433543e+03, 9.800999222285474e+03, 1.010024949757744e+04, 1.040399978145605e+04, 1.071225007413772e+04, 1.102500037603841e+04, 1.134225068652911e+04, 1.166399907433225e+04, 1.199024937430152e+04, 1.232099968286209e+04, 1.265625e+04, 1.299600032658136e+04, 1.334025066174005e+04, 1.368900100549005e+04, 1.404224923816076e+04, 1.439999957138933e+04, 1.476224991320311e+04, 1.51290002642455e+04, 1.550025062408615e+04, 1.587600099251346e+04, 1.625624908913537e+04, 1.664099944704124e+04, 1.703024981353375e+04, 1.742400018903665e+04, 1.782225057354995e+04, 1.82250009666499e+04, 1.863224892723467e+04, 1.904399930981784e+04, 1.946024970099464e+04, 1.988100010095899e+04, 2.030625051014659e+04, 2.073600092792384e+04, 2.117024875245865e+04, 2.160899915973774e+04, 2.205224957557555e+04, 2.25e+04]
+checkValve.m_flow=[-7.752541452646255e-03, -7.599805478316083e-03, -7.446929805593681e-03, -7.293918159769202e-03, -7.140772403488235e-03, -6.987495359281322e-03, -6.834090201089719e-03, -6.680559371518493e-03, -6.526906015802719e-03, -6.373132634038658e-03, -6.219241791059921e-03, -6.065236395354824e-03, -5.911119706551963e-03, -5.756894052963462e-03, -5.602562343589865e-03, -5.448127723172804e-03, -5.293592289683014e-03, -5.138959763289346e-03, -4.984232242087991e-03, -4.829412754953152e-03, -4.674504557234494e-03, -4.519509515582982e-03, -4.364431351557045e-03, -4.209272628208063e-03, -4.054035908130835e-03, -3.898724913597107e-03, -3.743341510038823e-03, -3.587889186211108e-03, -3.432370275174918e-03, -3.27678803407154e-03, -3.121145487997647e-03, -2.965444736056957e-03, -2.809689268801211e-03, -2.653882344630545e-03, -2.498025828838399e-03, -2.34212297965366e-03, -2.186177521532709e-03, -2.03019085328378e-03, -1.874166815639662e-03, -1.718108086161915e-03, -1.562017924064191e-03, -1.4058984257693e-03, -1.249752966805391e-03, -1.093584690190548e-03, -9.373958082990385e-04, -7.811895222822909e-04, -6.249692663343942e-04, -4.687369614854477e-04, -3.1249598367733e-04, -1.56249665304007e-04, 0e+00, 2.108186012328036e+00, 2.981425242590987e+00, 3.651485487228109e+00, 4.216368960341761e+00, 4.71404448007724e+00, 5.163977519516414e+00, 5.577733799645768e+00, 5.962848327781098e+00, 6.324556313443797e+00, 6.666665708993483e+00, 6.99205829724383e+00, 7.302967402666092e+00, 7.601169725051172e+00, 7.888106747695043e+00, 8.164966276308371e+00, 8.432739518215753e+00, 8.692269851000189e+00, 8.944271863119701e+00, 9.189365444468706e+00, 9.428090375798805e+00, 9.660918728166356e+00, 9.888264011637142e+00, 1.011049991556849e+01, 1.03279550403475e+01, 1.054092597961426e+01, 1.074967690117713e+01, 1.095445194717541e+01, 1.115546760229282e+01, 1.135292392618847e+01, 1.154700542358435e+01, 1.17378778005526e+01, 1.192569555238426e+01, 1.211060173093898e+01, 1.229272603645148e+01, 1.247219043153602e+01, 1.264911054240309e+01, 1.282358924220902e+01, 1.29957257131441e+01, 1.31656124619035e+01, 1.333333341230456e+01, 1.3498970553153e+01, 1.366260119917552e+01, 1.382429397516502e+01, 1.398411754578027e+01, 1.41421358072255e+01, 1.429840693408419e+01, 1.445298818421652e+01, 1.460593480624394e+01, 1.475729546476821e+01, 1.490711975097656e+01]
+checkValveDpFix.m_flow=[-7.752520032227039e-03, -7.599784523558206e-03, -7.446909782158223e-03, -7.293898136333848e-03, -7.140752845714168e-03, -6.987476267168542e-03, -6.834071574638226e-03, -6.680541210728288e-03, -6.526887855012931e-03, -6.373114938909741e-03, -6.219224561592291e-03, -6.065219631548481e-03, -5.911103408406907e-03, -5.756878220479694e-03, -5.602546976767384e-03, -5.448112822010223e-03, -5.293577854182275e-03, -5.13894579345031e-03, -4.984218737908994e-03, -4.829399250776375e-03, -4.67449151871845e-03, -4.519496942729751e-03, -4.364419244363853e-03, -4.20926098667588e-03, -4.054024732261188e-03, -3.898714203387499e-03, -3.743331032660968e-03, -3.587879407322825e-03, -3.432360729118528e-03, -3.276778953676437e-03, -3.121136873263832e-03, -2.965436586984429e-03, -2.809681585389971e-03, -2.653874894049948e-03, -2.49801884391909e-03, -2.342116693226281e-03, -2.186171467934309e-03, -2.030185265347777e-03, -1.874161693365501e-03, -1.71810331313372e-03, -1.562013616696936e-03, -1.40589458406368e-03, -1.2497494743465e-03, -1.09358166339218e-03, -9.373931889544362e-04, -7.811873685991841e-04, -6.249675201043239e-04, -4.687356518131292e-04, -3.124951105628847e-04, -1.562492287461338e-04, 0e+00, 1.084652798285731e+00, 1.53393065803649e+00, 1.878673719564719e+00, 2.169304019994485e+00, 2.425355857604131e+00, 2.656844562701449e+00, 2.869720366144158e+00, 3.067860206100095e+00, 3.253957266227621e+00, 3.429971284003748e+00, 3.597384456255098e+00, 3.757345601458287e+00, 3.910769534033575e+00, 4.058397499694961e+00, 4.200840805913738e+00, 4.338608861907587e+00, 4.472135800495924e+00, 4.601789859640423e+00, 4.727889567398091e+00, 4.850712443547709e+00, 4.97050167621754e+00, 5.08746972307351e+00, 5.201809190129118e+00, 5.313689126079652e+00, 5.423261642456055e+00, 5.530663114694668e+00, 5.636018951750249e+00, 5.739440733831591e+00, 5.841031334895346e+00, 5.940884948756617e+00, 6.039088225945917e+00, 6.135719844618598e+00, 6.230853238066126e+00, 6.324555640593955e+00, 6.416889448639107e+00, 6.507913459999518e+00, 6.597682433472111e+00, 6.686245960167954e+00, 6.773651723949516e+00, 6.859943594076367e+00, 6.945163027574508e+00, 7.029350140936665e+00, 7.11254066267086e+00, 7.194769401947633e+00, 7.276068783704507e+00, 7.356469802585306e+00, 7.436001074249104e+00, 7.514691203389503e+00, 7.592565939375051e+00, 7.669650077819824e+00]
checkValve_m_flow.m_flow=[0e+00, 5.000000186264474e-02, 1.000000037252895e-01, 1.500000093132189e-01, 2.000000074505756e-01, 2.499999962747083e-01, 3.00000018626444e-01, 3.499999925494183e-01, 4.000000149011346e-01, 4.499999701977309e-01, 4.999999925494416e-01, 5.500000149011524e-01, 6.00000037252863e-01, 6.500000000000711e-01, 6.999999850988478e-01, 7.499999701977664e-01, 8.000000298022691e-01, 8.500000149011346e-01, 8.999999403954617e-01, 9.499999999999645e-01, 9.999999850988832e-01, 1.049999985098741e+00, 1.100000029802305e+00, 1.149999955296579e+00, 1.200000074505726e+00, 1.25e+00, 1.299999999999858e+00, 1.349999970197838e+00, 1.399999970197696e+00, 1.450000089406843e+00, 1.499999940395533e+00, 1.549999940395391e+00, 1.600000059604538e+00, 1.649999910593228e+00, 1.700000029802376e+00, 1.750000029802234e+00, 1.799999880790923e+00, 1.850000000000071e+00, 1.899999999999929e+00, 1.950000119209077e+00, 1.999999970197766e+00, 2.049999970197624e+00, 2.099999970197482e+00, 2.150000059604751e+00, 2.200000059604609e+00, 2.250000059604467e+00, 2.299999910593157e+00, 2.349999910593015e+00, 2.400000149011452e+00, 2.450000000000142e+00, 2.5e+00, 2.549999999999148e+00, 2.599999999998295e+00, 2.650000238416022e+00, 2.699999940397274e+00, 2.749999940396421e+00, 2.799999940395213e+00, 2.849999940394715e+00, 2.900000178812442e+00, 2.950000178811589e+00, 2.999999880792842e+00, 3.049999880791989e+00, 3.099999880791137e+00, 3.150000119208863e+00, 3.200000119208011e+00, 3.250000119207158e+00, 3.299999821188411e+00, 3.349999821187558e+00, 3.400000059605285e+00, 3.450000059604787e+00, 3.500000059603579e+00, 3.550000059602726e+00, 3.599999761583978e+00, 3.650000000001705e+00, 3.700000000000852e+00, 3.75e+00, 3.799999999999148e+00, 3.849999999998295e+00, 3.900000238416022e+00, 3.949999940397274e+00, 3.999999940396421e+00, 4.050000178813508e+00, 4.099999940395568e+00, 4.150000178810452e+00, 4.199999940396137e+00, 4.24999988079e+00, 4.300000119208863e+00, 4.349999880791705e+00, 4.400000119208295e+00, 4.449999880791137e+00, 4.50000011921e+00, 4.550000059603863e+00, 4.599999821189548e+00, 4.650000059604432e+00, 4.699999821186492e+00, 4.750000059605e+00, 4.800000298018747e+00, 4.849999761587389e+00, 4.899999999999432e+00, 4.949999761583411e+00, 5e+00]
-checkValve.m_flow=[-7.752541452646255e-03, -7.599805478316083e-03, -7.446929805593681e-03, -7.293918159769202e-03, -7.140772403488235e-03, -6.987495359281322e-03, -6.834090201089719e-03, -6.680559371518493e-03, -6.526906015802719e-03, -6.373132634038658e-03, -6.219241791059921e-03, -6.065236395354824e-03, -5.911119706551963e-03, -5.756894052963462e-03, -5.602562343589865e-03, -5.448127723172804e-03, -5.293592289683014e-03, -5.138959763289346e-03, -4.984232242087991e-03, -4.829412754953152e-03, -4.674504557234494e-03, -4.519509515582982e-03, -4.364431351557045e-03, -4.209272628208063e-03, -4.054035908130835e-03, -3.898724913597107e-03, -3.743341510038823e-03, -3.587889186211108e-03, -3.432370275174918e-03, -3.27678803407154e-03, -3.121145487997647e-03, -2.965444736056957e-03, -2.809689268801211e-03, -2.653882344630545e-03, -2.498025828838399e-03, -2.34212297965366e-03, -2.186177521532709e-03, -2.03019085328378e-03, -1.874166815639662e-03, -1.718108086161915e-03, -1.562017924064191e-03, -1.4058984257693e-03, -1.249752966805391e-03, -1.093584690190548e-03, -9.373958082990385e-04, -7.811895222822909e-04, -6.249692663343942e-04, -4.687369614854477e-04, -3.1249598367733e-04, -1.56249665304007e-04, 4.547473393985798e-18, 2.108186012328036e+00, 2.981425242590987e+00, 3.651485487228109e+00, 4.216368960341761e+00, 4.71404448007724e+00, 5.163977519516414e+00, 5.577733799645768e+00, 5.962848327781098e+00, 6.324556313443797e+00, 6.666665708993483e+00, 6.99205829724383e+00, 7.302967402666092e+00, 7.601169725051172e+00, 7.888106747695043e+00, 8.164966276308371e+00, 8.432739518215753e+00, 8.692269851000189e+00, 8.944271863119701e+00, 9.189365444468706e+00, 9.428090375798805e+00, 9.660918728166356e+00, 9.888264011637142e+00, 1.011049991556849e+01, 1.03279550403475e+01, 1.054092597961426e+01, 1.074967690117713e+01, 1.095445194717541e+01, 1.115546760229282e+01, 1.135292392618847e+01, 1.154700542358435e+01, 1.17378778005526e+01, 1.192569555238426e+01, 1.211060173093898e+01, 1.229272603645148e+01, 1.247219043153602e+01, 1.264911054240309e+01, 1.282358924220902e+01, 1.29957257131441e+01, 1.31656124619035e+01, 1.333333341230456e+01, 1.3498970553153e+01, 1.366260119917552e+01, 1.382429397516502e+01, 1.398411754578027e+01, 1.41421358072255e+01, 1.429840693408419e+01, 1.445298818421652e+01, 1.460593480624394e+01, 1.475729546476821e+01, 1.490711975097656e+01]
-checkValve_m_flow.k=[3.333333370392211e-05, 2.5124943812356e-03, 4.481367383764485e-03, 6.272043216602961e-03, 7.949563819821735e-03, 9.543244610377982e-03, 1.106966400026355e-02, 1.253935224715179e-02, 1.395949187447931e-02, 1.533519148657346e-02, 1.667017842539976e-02, 1.796719812006738e-02, 1.922824639561976e-02, 2.045472396309983e-02, 2.164752215567459e-02, 2.280707216484617e-02, 2.393335329812105e-02, 2.50258704581014e-02, 2.608359902968145e-02, 2.710488089881254e-02, 2.80872450125125e-02, 2.902712173969935e-02, 2.991936552353304e-02, 3.075644153723524e-02, 3.152692356766528e-02, 3.221258521080017e-02, 3.278239489568243e-02, 3.318074312277398e-02, 3.333080559424496e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02]
-checkValveDpFix.k=[3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 3.333328641019762e-05, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02, 1.714985817670822e-02]
-checkValve.k=[3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333370392211e-05, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02]
diff --git a/IBPSA/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/CheckValve.mos b/IBPSA/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/CheckValve.mos
index 30e334f42f..20327d0c8d 100644
--- a/IBPSA/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/CheckValve.mos
+++ b/IBPSA/Resources/Scripts/Dymola/Fluid/FixedResistances/Examples/CheckValve.mos
@@ -1,4 +1,3 @@
simulateModel("IBPSA.Fluid.FixedResistances.Examples.CheckValve", method="Cvode", tolerance=1e-06, stopTime=1, resultFile="CheckValve");
createPlot(id=1, position={0, 0, 988, 599}, y={"checkValve.dp", "checkValve_m_flow.dp"}, range={0.0, 1.0, -20000.0, 40000.0}, grid=true, colors={{28,108,200}, {238,46,47}});
createPlot(id=1, position={0, 0, 988, 197}, y={"checkValve.m_flow", "checkValveDpFix.m_flow", "checkValve_m_flow.m_flow"}, range={0.0, 1.0, -2.0, 6.0}, grid=true, subPlot=2, colors={{28,108,200}, {238,46,47}, {0,140,72}});
-createPlot(id=1, position={0, 0, 988, 197}, y={"checkValve.k", "checkValveDpFix.k", "checkValve_m_flow.k"}, range={0.0, 1.0, -0.02, 0.06}, grid=true, subPlot=3, colors={{28,108,200}, {238,46,47}, {0,140,72}});