diff --git a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Effectiveness.mo b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Effectiveness.mo
index c25b62552de..1e2f60677b1 100644
--- a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Effectiveness.mo
+++ b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Effectiveness.mo
@@ -40,8 +40,7 @@ model Effectiveness
Modelica.Blocks.Interfaces.RealInput VExh_flow( final unit="m3/s")
"Exhaust air volumetric flow rate"
annotation (Placement(transformation(extent={{-140,20},{-100,60}})));
- Modelica.Blocks.Interfaces.RealInput wheSpe(final unit="1")
- "Wheel speed ratio"
+ Modelica.Blocks.Interfaces.RealInput uSpe(final unit="1") "Wheel speed"
annotation (Placement(transformation(extent={{-140,-20},{-100,20}})));
Modelica.Blocks.Interfaces.RealOutput epsSen(final unit="1")
"Sensible heat exchanger effectiveness"
@@ -79,8 +78,8 @@ equation
epsLatPL = Buildings.Utilities.Math.Functions.regStep(TSup-TExh, epsLatCooPL, epsLatHeaPL, 1e-5);
epsLat_nominal = Buildings.Utilities.Math.Functions.regStep(TSup-TExh, epsLatCoo_nominal, epsLatHea_nominal, 1e-5);
// calculate effectiveness.
- epsSen =wheSpe*(epsSenPL + (epsSen_nominal - epsSenPL)*(rat - 0.75)/0.25);
- epsLat =wheSpe*(epsLatPL + (epsLat_nominal - epsLatPL)*(rat - 0.75)/0.25);
+ epsSen =uSpe*(epsSenPL + (epsSen_nominal - epsSenPL)*(rat - 0.75)/0.25);
+ epsLat =uSpe*(epsLatPL + (epsLat_nominal - epsLatPL)*(rat - 0.75)/0.25);
assert(epsSen > 0 and epsSen < 1,
"Insensed value for the sensible heat exchanger effectiveness",
level=AssertionLevel.error);
@@ -107,9 +106,9 @@ supply flow rate by:
rat = (VSup_flow + VExh_flow)/(2*VSup_flow_nominal),
-where VSup_flow
is the flow rate of the supply air,
-VExh_flow
is the flow rate of the exhaust air,
-VSup_flow_nominal
is the nominal flow rate of the supply air, and
+where VSup_flow
is the flow rate of the supply air;
+VExh_flow
is the flow rate of the exhaust air;
+VSup_flow_nominal
is the nominal flow rate of the supply air; and
rat
is the flow ratio.
@@ -120,16 +119,16 @@ It then calculates the sensible and latent effectiveness by:
epsLat = wheSpe * (epsLatPL + (epsLat_nominal - epsLatPL) * (rat - 0.75)/0.25),
where epsSen
and epsLat
are the effectiveness
-for the sensible and latent heat transfer, respectively.
+for the sensible and latent heat transfer, respectively;
epsSen_nominal
and epsSenPL
are the effectiveness
-for the sensible heat transfer when rat
is 1 and 0.75, respectively.
+for the sensible heat transfer when rat
is 1 and 0.75, respectively;
epsLat_nominal
and epsLatPL
are the effectiveness
-for the latent heat transfer when vRat
is 1 and 0.75, respectively.
-wheSpe
is the speed of a rotary wheel.
+for the latent heat transfer when Rat
is 1 and 0.75, respectively;
+uSpe
is the speed of a rotary wheel.
-epsSen_nominal
, epsSenPL
, epsLat_nominal
, and
-epsLatPL
are parameters.
-Depending on the cooling or heating mode, their values are different.
+The parameters epsSen_nominal
, epsSenPL
, epsLat_nominal
, and
+epsLatPL
have different values depending on if the wheel is in
+the cooling or heating mode.
If the supply air temperature is greater than the exhaust air
temperature, the exchanger is considered to operate under
the cooling mode;
diff --git a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/HeatExchangerWithInputEffectiveness.mo b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/HeatExchangerWithInputEffectiveness.mo
index d18e7b20671..be2df24116f 100644
--- a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/HeatExchangerWithInputEffectiveness.mo
+++ b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/HeatExchangerWithInputEffectiveness.mo
@@ -2,18 +2,18 @@ within Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.BaseClasses;
model HeatExchangerWithInputEffectiveness
"Heat and moisture exchanger with varying effectiveness"
extends Buildings.Fluid.HeatExchangers.BaseClasses.PartialEffectiveness(
- redeclare replaceable package Medium1 =
+ redeclare replaceable package Medium1 =
Modelica.Media.Interfaces.PartialCondensingGases,
- redeclare replaceable package Medium2 =
+ redeclare replaceable package Medium2 =
Modelica.Media.Interfaces.PartialCondensingGases,
- sensibleOnly1=false,
- sensibleOnly2=false,
- final prescribedHeatFlowRate1=true,
- final prescribedHeatFlowRate2=true,
- Q1_flow = epsSen * QMax_flow + QLat_flow,
- Q2_flow = -Q1_flow,
- mWat1_flow = +mWat_flow,
- mWat2_flow = -mWat_flow);
+ sensibleOnly1=false,
+ sensibleOnly2=false,
+ final prescribedHeatFlowRate1=true,
+ final prescribedHeatFlowRate2=true,
+ Q1_flow = epsSen * QMax_flow + QLat_flow,
+ Q2_flow = -Q1_flow,
+ mWat1_flow = +mWat_flow,
+ mWat2_flow = -mWat_flow);
Modelica.Blocks.Interfaces.RealInput epsSen(unit="1")
"Sensible heat exchanger effectiveness"
@@ -123,7 +123,7 @@ This model transfers heat and moisture in the amount of
m = epsLat * mWat_max,
-where epsSen
and epsLat
are input effectiveness
+where epsSen
and epsLat
are the input effectiveness
for the sensible and latent heat transfer, respectively;
Q_max
is the maximum sensible heat that can be transferred,
m
is the moisture that is transferred, and
diff --git a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Validation/Effectiveness.mo b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Validation/Effectiveness.mo
index 45769c8ae03..d2342844ded 100644
--- a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Validation/Effectiveness.mo
+++ b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/BaseClasses/Validation/Effectiveness.mo
@@ -53,7 +53,7 @@ equation
annotation (Line(points={{-59,70},{-28,70},{-28,8},{-14,8}}, color={0,0,127}));
connect(VExh.y, epsCal.VExh_flow)
annotation (Line(points={{-59,30},{-40,30},{-40,4},{-14,4}}, color={0,0,127}));
- connect(whSpe.y, epsCal.wheSpe)
+ connect(whSpe.y, epsCal.uSpe)
annotation (Line(points={{-59,0},{-14,0}}, color={0,0,127}));
connect(TSup.y, epsCal.TSup)
annotation (Line(points={{-59,-40},{-40,-40},{-40,-4},{-14,-4}}, color={0,0,127}));
@@ -86,7 +86,7 @@ exhaust air flow rate, VExh, change from
0.6 to 1 and 0.8 to 1 respectively. The flow rates then stay constant.
-In the first 60 seonds, the wheel speed ratio, wheSpe, keeps constant.
+In the first 60 seonds, the wheel speed uSpe keeps constant.
It then increases from 0.3 to 1 during the period from 60 seconds to 120
seconds.
diff --git a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mo b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mo
index a5a93fae7a8..3ebfa8466de 100644
--- a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mo
+++ b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mo
@@ -79,9 +79,8 @@ equation
connect(whe.port_b2, sin_2.ports[1])
annotation (Line(points={{6,0},{-18,0},{-18,6.66134e-16},{-38,6.66134e-16}},
color={0,127,255}));
- connect(bypDamPos.y, whe.bypDamPos)
- annotation (Line(points={{-59,-30},{-28,-30},{-28,6},{4,6}},
- color={0,0,127}));
+ connect(bypDamPos.y, whe.uBypDamPos) annotation (Line(points={{-59,-30},{-28,-30},
+ {-28,6},{4,6}}, color={0,0,127}));
annotation(experiment(Tolerance=1e-6, StopTime=360),
__Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mos"
@@ -102,7 +101,7 @@ The supply air temperature TSup changes from 273.15 + 30 K to
The exhaust air temperature keeps constant.
-The bypass damper position bypDamPos changes from 0 to 0.2
+The bypass damper position uBypDamPos changes from 0 to 0.2
during the period from 200 seconds to 360 seconds.
diff --git a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mo b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mo
index c5d50719476..964125b43f6 100644
--- a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mo
+++ b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mo
@@ -79,9 +79,8 @@ equation
connect(whe.port_b2, sin_2.ports[1])
annotation (Line(points={{6,5.55112e-16},{-18,5.55112e-16},{-18,0},{-38,0}},
color={0,127,255}));
- connect(wheSpe.y, whe.wheSpe)
- annotation (Line(points={{-59,-30},{-28,-30},{-28,6},{4,6}},
- color={0,0,127}));
+ connect(wheSpe.y, whe.uSpe) annotation (Line(points={{-59,-30},{-28,-30},{-28,
+ 6},{4,6}}, color={0,0,127}));
annotation(experiment(Tolerance=1e-6, StopTime=360),
__Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mos"
@@ -102,7 +101,7 @@ The supply air temperature TSup changes from 273.15 + 30 K to
The exhaust air temperature keeps constant.
-The wheel speed ratio wheSpe changes from 0.7 to 1
+The wheel speed uSpe changes from 0.7 to 1
during the period from 200 seconds to 360 seconds.
diff --git a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithBypassDamper.mo b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithBypassDamper.mo
index 101dcedfce9..868def81ae1 100644
--- a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithBypassDamper.mo
+++ b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithBypassDamper.mo
@@ -41,11 +41,14 @@ model WheelWithBypassDamper
parameter Modelica.Units.SI.Efficiency epsLatHeaPL(
final max=1) = 0.75
"Part load (75%) latent heat exchanger effectiveness at the heating mode";
- Modelica.Blocks.Interfaces.RealInput bypDamPos(
- final unit="1")
+
+ Modelica.Blocks.Interfaces.RealInput uBypDamPos(
+ final unit="1",
+ final min=0,
+ final max=1)
"Bypass damper position"
annotation (Placement(transformation(extent={{-220,100},{-180,140}}),
- iconTransformation(extent={{-140,-20},{-100,20}})));
+ iconTransformation(extent={{-140,-20},{-100,20}})));
Modelica.Blocks.Interfaces.RealOutput P
"Electric power consumed by the wheel"
annotation (Placement(transformation(extent={{100,-10},{120,10}})));
@@ -175,11 +178,10 @@ equation
annotation (Line(points={{-79,14},{-12,14}}, color={0,0,127}));
connect(effCal.epsLat, hex.epsLat)
annotation (Line(points={{-79,6},{-12,6}},color={0,0,127}));
- connect(bypDamSup.y, bypDamPos)
+ connect(bypDamSup.y, uBypDamPos)
annotation (Line(points={{-28,92},{-28,120},{-200,120}}, color={0,0,127}));
- connect(effCal.wheSpe, uni.y)
- annotation (Line(points={{-102,10},{-130,10},{-130,40},{-139,40}},
- color={0,0,127}));
+ connect(effCal.uSpe, uni.y) annotation (Line(points={{-102,10},{-130,10},{-130,
+ 40},{-139,40}}, color={0,0,127}));
connect(TSup.y, effCal.TSup)
annotation (Line(points={{-139,-20},{-114,-20},{-114,6},{-102,6}},
color={0,0,127}));
@@ -189,9 +191,8 @@ equation
connect(damSup.port_b, hex.port_a1)
annotation (Line(points={{-22,40},{-20,40},{-20,16},{-10,16}},
color={0,127,255}));
- connect(bypDamExh.y, bypDamPos)
- annotation (Line(points={{-30,-48},{-30,-30},{40,-30},{40,120},{-200,120}},
- color={0,0,127}));
+ connect(bypDamExh.y, uBypDamPos) annotation (Line(points={{-30,-48},{-30,-30},
+ {40,-30},{40,120},{-200,120}}, color={0,0,127}));
connect(damSup.port_a, VSup_flow.port_b)
annotation (Line(points={{-42,40},{-60,40}}, color={0,127,255}));
connect(VSup_flow.port_a, port_a1)
@@ -211,9 +212,8 @@ equation
connect(VExh_flow.V_flow, effCal.VExh_flow)
annotation (Line(points={{-50,-9},{-50,60},{-120,60},{-120,14},{-102,14}},
color={0,0,127}));
- connect(sub.u2, bypDamPos)
- annotation (Line(points={{-122,94},{-140,94},{-140,120},{-200,120}},
- color={0,0,127}));
+ connect(sub.u2, uBypDamPos) annotation (Line(points={{-122,94},{-140,94},{-140,
+ 120},{-200,120}}, color={0,0,127}));
connect(uni.y, sub.u1)
annotation (Line(points={{-139,40},{-130,40},{-130,106},{-122,106}},
color={0,0,127}));
diff --git a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithVariableSpeed.mo b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithVariableSpeed.mo
index 19725c1783b..0107a6b7bbf 100644
--- a/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithVariableSpeed.mo
+++ b/Buildings/Fluid/HeatExchangers/AirToAirHeatRecovery/WheelWithVariableSpeed.mo
@@ -41,9 +41,12 @@ model WheelWithVariableSpeed
parameter Modelica.Units.SI.Efficiency epsLatHeaPL(
final max=1) = 0.75
"Part load (75%) latent heat exchanger effectiveness at the heating mode";
- Modelica.Blocks.Interfaces.RealInput wheSpe(
- final unit="1")
- "Wheel speed ratio"
+
+ Modelica.Blocks.Interfaces.RealInput uSpe(
+ final unit="1",
+ final min=0,
+ final max=1)
+ "Wheel speed"
annotation (Placement(transformation(extent={{-140,-20},{-100,20}})));
Modelica.Blocks.Interfaces.RealOutput P
"Electric power consumed by the wheel"
@@ -146,9 +149,8 @@ equation
connect(effCal.epsLat, hex.epsLat)
annotation (Line(points={{-19,46},{-12,46},{-12,-4},{4,-4}},
color={0,0,127}));
- connect(effCal.wheSpe, wheSpe)
- annotation (Line(points={{-42,50},{-94,50},{-94,0},{-120,0}},
- color={0,0,127}));
+ connect(effCal.uSpe, uSpe) annotation (Line(points={{-42,50},{-94,50},{-94,0},
+ {-120,0}}, color={0,0,127}));
connect(senSupFlow.V_flow, effCal.VSup_flow)
annotation (Line(points={{-30,111},{-30,120},{-80,120},{-80,58},{-42,58}},
color={0,0,127}));
diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithBypassDamper.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithBypassDamper.txt
index 43a73a974d3..6d31971813e 100644
--- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithBypassDamper.txt
+++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithBypassDamper.txt
@@ -1,4 +1,4 @@
-last-generated=2023-11-15
+last-generated=2023-12-14
statistics-simulation=
{
"linear": "4, 4",
@@ -12,6 +12,6 @@ TSup.y=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.0
whe.port_a1.m_flow=[1e+01, 7.473897890355959e+00, 6.189397754680937e+00, 5.405409838762697e+00, 5.154702173853067e+00, 5.071506500244141e+00, 5.0387630486839e+00, 5.023861410564977e+00, 5.015490052916603e+00, 5.006117347137351e+00, 5.001753807067871e+00, 5.000472068560258e+00, 5.000136375466152e+00, 5.000044822684282e+00, 5.000017166144769e+00, 5.000007629394531e+00, 5.000003814696255e+00, 5.000002384185791e+00, 5.000001430511475e+00, 5.000000953674316e+00, 5.000000953674316e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 4.999943733607425e+00, 4.998464581531157e+00, 4.993455892598923e+00, 4.983616806819795e+00, 4.968370914459229e+00, 4.947595635239784e+00, 4.921479200424519e+00, 4.890399960780747e+00, 4.854838306803896e+00, 4.815305233001709e+00, 4.772305086800642e+00, 4.726323564260856e+00, 4.677818817062193e+00, 4.6272110062517e+00, 4.574877262115479e+00, 4.521149727226299e+00, 4.466317840866078e+00, 4.410633373777898e+00, 4.354313754412903e+00, 4.297544956207275e+00, 4.240487195569017e+00, 4.183275416884372e+00, 4.126023098492043e+00, 4.068831346947831e+00, 4.011781215667725e+00, 3.954947090965448e+00, 3.898392630229742e+00, 3.842174340167547e+00, 3.786343241875792e+00, 3.730943441390991e+00, 3.676013324074063e+00, 3.621587221883087e+00, 3.567693290284806e+00, 3.514356046472182e+00, 3.461592674255371e+00, 3.409414141028468e+00, 3.357825930202537e+00, 3.306823081866735e+00, 3.256394301365054e+00, 3.206521272659302e+00, 3.157174432150856e+00, 3.108320878061652e+00, 3.059922293489332e+00, 3.011936345195597e+00, 2.964321374893188e+00]
whe.port_a2.m_flow=[1e+01, 7.473897890355959e+00, 6.189397754680937e+00, 5.405409838762697e+00, 5.154702173853067e+00, 5.071506500244141e+00, 5.0387630486839e+00, 5.023861410564977e+00, 5.015490052916603e+00, 5.006117347137351e+00, 5.001753807067871e+00, 5.000472068560258e+00, 5.000136375466152e+00, 5.000044822684282e+00, 5.000017166144769e+00, 5.000007629394531e+00, 5.000003814696255e+00, 5.000002384185791e+00, 5.000001430511475e+00, 5.000000953674316e+00, 5.000000953674316e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5.000000476837158e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 5e+00, 4.999943733607425e+00, 4.998464581531157e+00, 4.993455892598923e+00, 4.983616806819795e+00, 4.968370914459229e+00, 4.947595635239784e+00, 4.921479200424519e+00, 4.890399960780747e+00, 4.854838306803896e+00, 4.815305233001709e+00, 4.772305086800642e+00, 4.726323564260856e+00, 4.677818817062193e+00, 4.6272110062517e+00, 4.574877262115479e+00, 4.521149727226299e+00, 4.466317840866078e+00, 4.410633373777898e+00, 4.354313754412903e+00, 4.297544956207275e+00, 4.240487195569017e+00, 4.183275416884372e+00, 4.126023098492043e+00, 4.068831346947831e+00, 4.011781215667725e+00, 3.954947090965448e+00, 3.898392630229742e+00, 3.842174340167547e+00, 3.786343241875792e+00, 3.730943441390991e+00, 3.676013324074063e+00, 3.621587221883087e+00, 3.567693290284806e+00, 3.514356046472182e+00, 3.461592674255371e+00, 3.409414141028468e+00, 3.357825930202537e+00, 3.306823081866735e+00, 3.256394301365054e+00, 3.206521272659302e+00, 3.157174432150856e+00, 3.108320878061652e+00, 3.059922293489332e+00, 3.011936345195597e+00, 2.964321374893188e+00]
whe.hex.sta_b2.T=[3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.012703857421875e+02, 3.014332884706416e+02, 3.01921996656004e+02, 3.024106748417386e+02, 3.028993835449219e+02, 3.033880922481699e+02, 3.038768009512885e+02, 3.043654781013165e+02, 3.048541868045645e+02, 3.053428955078125e+02, 3.058315736934824e+02, 3.063202823967304e+02, 3.068089900642071e+02, 3.072976682499417e+02, 3.07786376953125e+02, 3.082750856563083e+02, 3.087637638420429e+02, 3.092524715095196e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153747558594e+02, 3.094153137212205e+02, 3.094140624975424e+02, 3.094097595263997e+02, 3.094013366510367e+02, 3.093883056640625e+02, 3.093705139493879e+02, 3.09348175027744e+02, 3.093215942620817e+02, 3.092911681575288e+02, 3.0925732421875e+02, 3.092205200836889e+02, 3.091811828267917e+02, 3.091396789909081e+02, 3.090963439193762e+02, 3.090515747070312e+02, 3.090055847954417e+02, 3.089586488420348e+02, 3.089109800621456e+02, 3.088627928864833e+02, 3.088141784667969e+02, 3.087653199072615e+02, 3.087163392774137e+02, 3.086672971966782e+02, 3.086182860497697e+02, 3.085693664550781e+02, 3.085206299653379e+02, 3.084720765800316e+02, 3.084237669263452e+02, 3.083757323406431e+02, 3.083280029296875e+02, 3.082806092110565e+02, 3.082335817018107e+02, 3.081868894911477e+02, 3.081405944042944e+02, 3.080946655273438e+02, 3.080491638951934e+02, 3.080040284729457e+02, 3.079593199177958e+02, 3.079150389879943e+02, 3.078711853027344e+02, 3.078277588622747e+02, 3.077847291492958e+02, 3.077421568391019e+02, 3.077000121361474e+02, 3.076583251953125e+02]
-whe.bypDamPos=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.999992465612479e-03, 6.500003948800676e-03, 1.099999612570312e-02, 1.550000737606466e-02, 1.999999955296516e-02, 2.449999172988142e-02, 2.900000298022717e-02, 3.349999701977283e-02, 3.800000640748921e-02, 4.250000044703484e-02, 4.699999076132177e-02, 5.150000387429688e-02, 5.59999979138425e-02, 6.050000730155885e-02, 6.499999761581417e-02, 6.949999165535983e-02, 7.399998569490546e-02, 7.850001788137323e-02, 8.300000447033823e-02, 8.749999850988388e-02, 9.199999254942953e-02, 9.649998658897513e-02, 1.010000187753166e-01, 1.05500005364408e-01, 1.099999994039536e-01, 1.144999934434992e-01, 1.189999874830448e-01, 1.23500012218932e-01, 1.280000137090582e-01, 1.324999928474426e-01, 1.369999868869883e-01, 1.414999809265339e-01, 1.460000131130016e-01, 1.505000071525472e-01, 1.550000011920929e-01, 1.594999952316385e-01, 1.639999892711841e-01, 1.685000214576519e-01, 1.730000005960363e-01, 1.77499994635582e-01, 1.819999886751276e-01, 1.864999827146732e-01, 1.91000014901141e-01, 1.955000089406866e-01, 2.000000029802322e-01]
+whe.uBypDamPos=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.999992465612479e-03, 6.500003948800676e-03, 1.099999612570312e-02, 1.550000737606466e-02, 1.999999955296516e-02, 2.449999172988142e-02, 2.900000298022717e-02, 3.349999701977283e-02, 3.800000640748921e-02, 4.250000044703484e-02, 4.699999076132177e-02, 5.150000387429688e-02, 5.59999979138425e-02, 6.050000730155885e-02, 6.499999761581417e-02, 6.949999165535983e-02, 7.399998569490546e-02, 7.850001788137323e-02, 8.300000447033823e-02, 8.749999850988388e-02, 9.199999254942953e-02, 9.649998658897513e-02, 1.010000187753166e-01, 1.05500005364408e-01, 1.099999994039536e-01, 1.144999934434992e-01, 1.189999874830448e-01, 1.23500012218932e-01, 1.280000137090582e-01, 1.324999928474426e-01, 1.369999868869883e-01, 1.414999809265339e-01, 1.460000131130016e-01, 1.505000071525472e-01, 1.550000011920929e-01, 1.594999952316385e-01, 1.639999892711841e-01, 1.685000214576519e-01, 1.730000005960363e-01, 1.77499994635582e-01, 1.819999886751276e-01, 1.864999827146732e-01, 1.91000014901141e-01, 1.955000089406866e-01, 2.000000029802322e-01]
whe.effCal.epsSen=[8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.15500020980835e-01, 8.154975772070732e-01, 8.154338000989712e-01, 8.152179124454552e-01, 8.147938838017394e-01, 8.141367435455322e-01, 8.132413642492259e-01, 8.12115727789005e-01, 8.107762348764057e-01, 8.092434974536896e-01, 8.075395822525024e-01, 8.056862982672652e-01, 8.037044388558297e-01, 8.016138690879587e-01, 7.994325719247337e-01, 7.971768975257874e-01, 7.948610822241824e-01, 7.924975833522759e-01, 7.900972284337147e-01, 7.876693564994709e-01, 7.852218747138977e-01, 7.827616375732487e-01, 7.802943074970506e-01, 7.778245722970133e-01, 7.753567057769911e-01, 7.728938460350037e-01, 7.704389136860128e-01, 7.679942929031779e-01, 7.655619896706753e-01, 7.631437737626552e-01, 7.607409358024597e-01, 7.583547274876291e-01, 7.559860428777297e-01, 7.536356965865841e-01, 7.51304384113212e-01, 7.489926218986511e-01, 7.467008271789518e-01, 7.444294767826827e-01, 7.421789093419372e-01, 7.39949341829951e-01, 7.377411127090454e-01, 7.355543411945734e-01, 7.33389265696019e-01, 7.312459873444743e-01, 7.291246020818674e-01, 7.270252704620361e-01]
whe.effCal.epsLat=[7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.310000061988831e-01, 7.309951186518648e-01, 7.308676240398001e-01, 7.304358487325157e-01, 7.29587731840692e-01, 7.282735109329224e-01, 7.264826927361703e-01, 7.242314794198679e-01, 7.215524339900244e-01, 7.184870187492373e-01, 7.150791883468628e-01, 7.113725607717436e-01, 7.074089015535172e-01, 7.032277024133832e-01, 6.988651676913253e-01, 6.943537592887878e-01, 6.897221286855779e-01, 6.849951905474204e-01, 6.801944807082767e-01, 6.75338677236155e-01, 6.704437732696533e-01, 6.655232393847209e-01, 6.605885792323249e-01, 6.556491684358844e-01, 6.50713375792206e-01, 6.457876563072205e-01, 6.408777916102494e-01, 6.359885500445794e-01, 6.311239435795744e-01, 6.262875117625236e-01, 6.214818954467773e-01, 6.16709478816611e-01, 6.119721095973173e-01, 6.072714170140157e-01, 6.026087920687873e-01, 5.979852080345154e-01, 5.934016185951168e-01, 5.888589774062128e-01, 5.843577829220981e-01, 5.798986478976204e-01, 5.75482189655304e-01, 5.7110864662636e-01, 5.667784956302618e-01, 5.624919389271723e-01, 5.582492280050874e-01, 5.540505647659302e-01]
diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithVariableSpeed.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithVariableSpeed.txt
index 07766caed69..f0eed957768 100644
--- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithVariableSpeed.txt
+++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_AirToAirHeatRecovery_Examples_WheelWithVariableSpeed.txt
@@ -1,4 +1,4 @@
-last-generated=2023-11-15
+last-generated=2023-12-14
statistics-initialization=
{
"nonlinear": "0, 0",
@@ -16,6 +16,6 @@ TSup.y=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.0
whe.port_a1.m_flow=[5e+00, 5e+00]
whe.port_a2.m_flow=[5e+00, 5e+00]
whe.hex.sta_b2.T=[2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.988356323242188e+02, 2.989497069587169e+02, 2.992918698270552e+02, 2.996340330581235e+02, 2.999761962890625e+02, 3.003183900375796e+02, 3.006605532685186e+02, 3.010027157744501e+02, 3.013448790053891e+02, 3.016870727539062e+02, 3.020292359848452e+02, 3.023713992157843e+02, 3.027135617217157e+02, 3.030557554701682e+02, 3.033979187011719e+02, 3.037400819321109e+02, 3.040822451631792e+02, 3.044244381864302e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045384826660156e+02, 3.045872495698539e+02, 3.046969605422215e+02, 3.048067015670242e+02, 3.049164125395211e+02, 3.05026123046875e+02, 3.051358335542289e+02, 3.052455445265965e+02, 3.053552550339504e+02, 3.05464966006318e+02, 3.055746765136719e+02, 3.056843870210258e+02, 3.057940674758153e+02, 3.059037779831691e+02, 3.060134889555367e+02, 3.061231689453125e+02, 3.062328794526664e+02, 3.063425594424421e+02, 3.064522708798235e+02, 3.065619508695992e+02, 3.06671630859375e+02, 3.067813108494095e+02, 3.068910213565046e+02, 3.070007022763079e+02, 3.071103822660836e+02, 3.072200622558594e+02, 3.073297422456351e+02, 3.074394222354109e+02, 3.07549072637636e+02, 3.076587526274117e+02, 3.077684326171875e+02, 3.078780820896438e+02, 3.079877620791609e+02, 3.08097412481386e+02, 3.082070924711617e+02, 3.083167419433594e+02, 3.084264219331351e+02, 3.085360714053327e+02, 3.086457218075579e+02, 3.087553712797555e+02, 3.088650207519531e+02, 3.089746702244095e+02, 3.090843196968658e+02, 3.091939700985735e+02, 3.093036195707711e+02, 3.094132690429688e+02]
-whe.wheSpe=[6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 7.029999976159558e-01, 7.09750002384115e-01, 7.164999785423986e-01, 7.232499833110633e-01, 7.300000190734863e-01, 7.367499952317699e-01, 7.434999999999292e-01, 7.502499761582129e-01, 7.57000040531017e-01, 7.637500166893005e-01, 7.704999928475842e-01, 7.772499976157435e-01, 7.839999737740271e-01, 7.907500381468311e-01, 7.975000143051147e-01, 8.042499904633983e-01, 8.109999666216818e-01, 8.177500000007276e-01, 8.245000357626453e-01, 8.31250011920929e-01, 8.379999880792126e-01, 8.44749964237496e-01, 8.514999976165418e-01, 8.582500333784596e-01, 8.650000095367432e-01, 8.717499856950268e-01, 8.784999618533103e-01, 8.85249995232356e-01, 8.920000309942737e-01, 8.987500071525574e-01, 9.05499983310841e-01, 9.122499594691245e-01, 9.190000524518045e-01, 9.257500286100879e-01, 9.325000047683716e-01, 9.392499809266552e-01, 9.459999570849387e-01, 9.527500500676187e-01, 9.595000262259021e-01, 9.662500023841858e-01, 9.729999785424693e-01, 9.797499547007529e-01, 9.865000476834329e-01, 9.932500238417163e-01, 1e+00]
+whe.uSpe=[6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 6.99999988079071e-01, 7.029999976159558e-01, 7.09750002384115e-01, 7.164999785423986e-01, 7.232499833110633e-01, 7.300000190734863e-01, 7.367499952317699e-01, 7.434999999999292e-01, 7.502499761582129e-01, 7.57000040531017e-01, 7.637500166893005e-01, 7.704999928475842e-01, 7.772499976157435e-01, 7.839999737740271e-01, 7.907500381468311e-01, 7.975000143051147e-01, 8.042499904633983e-01, 8.109999666216818e-01, 8.177500000007276e-01, 8.245000357626453e-01, 8.31250011920929e-01, 8.379999880792126e-01, 8.44749964237496e-01, 8.514999976165418e-01, 8.582500333784596e-01, 8.650000095367432e-01, 8.717499856950268e-01, 8.784999618533103e-01, 8.85249995232356e-01, 8.920000309942737e-01, 8.987500071525574e-01, 9.05499983310841e-01, 9.122499594691245e-01, 9.190000524518045e-01, 9.257500286100879e-01, 9.325000047683716e-01, 9.392499809266552e-01, 9.459999570849387e-01, 9.527500500676187e-01, 9.595000262259021e-01, 9.662500023841858e-01, 9.729999785424693e-01, 9.797499547007529e-01, 9.865000476834329e-01, 9.932500238417163e-01, 1e+00]
whe.effCal.epsSen=[5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.707756280899048e-01, 5.732217933800871e-01, 5.787257002759989e-01, 5.842296434475508e-01, 5.897335503432101e-01, 5.952374339103699e-01, 6.007413174775296e-01, 6.062452839778337e-01, 6.117491675449934e-01, 6.172530744406528e-01, 6.227569580078125e-01, 6.282609011796171e-01, 6.337648080752764e-01, 6.39268691642436e-01, 6.447725985386006e-01, 6.502765417098999e-01, 6.557804252770596e-01, 6.612843088442194e-01, 6.66788298673023e-01, 6.722921822401827e-01, 6.777960658073425e-01, 6.832999493745023e-01, 6.888038925452963e-01, 6.943078227704657e-01, 6.998117063376255e-01, 7.053155899047852e-01, 7.108195330760845e-01, 7.163234166437494e-01, 7.218273468679083e-01, 7.27331230435068e-01, 7.328351736068726e-01, 7.383390571740324e-01, 7.438429407411921e-01, 7.493468709653509e-01, 7.548508141371554e-01, 7.603546977043152e-01, 7.65858581271475e-01, 7.713624648386347e-01, 7.768664546674383e-01, 7.82370338234598e-01, 7.878742218017578e-01, 7.933781053689175e-01, 7.988820485397116e-01, 8.043859787648809e-01, 8.098898623320406e-01, 8.153937458992004e-01]
whe.effCal.epsLat=[5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.115512609481812e-01, 5.137436306290147e-01, 5.186764639709236e-01, 5.236092764045952e-01, 5.285421097459988e-01, 5.334749221801758e-01, 5.38407675009708e-01, 5.433405083511116e-01, 5.482733207850359e-01, 5.532061541266921e-01, 5.581389665603638e-01, 5.630717789940355e-01, 5.680046123359443e-01, 5.72937424769616e-01, 5.778702581115248e-01, 5.828030705451965e-01, 5.877358829788683e-01, 5.926686954125399e-01, 5.976014900580412e-01, 6.025343024917128e-01, 6.074671149253845e-01, 6.123999273590562e-01, 6.173327397927278e-01, 6.22265594042874e-01, 6.271984064765457e-01, 6.321312189102173e-01, 6.37064031343889e-01, 6.419968437775606e-01, 6.469296980266962e-01, 6.518625104608731e-01, 6.567952632904053e-01, 6.617280757245823e-01, 6.666608881587591e-01, 6.715937424078947e-01, 6.765265548415663e-01, 6.81459367275238e-01, 6.863921797089098e-01, 6.913249921425814e-01, 6.962578463927275e-01, 7.011906588258938e-01, 7.061234712600708e-01, 7.110562836937424e-01, 7.159890365237799e-01, 7.209218907729155e-01, 7.258547032065871e-01, 7.307875156402588e-01]
diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mos
index 8603362a0d8..9f5290508a2 100644
--- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mos
+++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithBypassDamper.mos
@@ -2,5 +2,5 @@ simulateModel("Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.Whee
createPlot(id=1, position={40, -1, 890, 669}, y={"whe.hex.sta_b1.T", "TSup.y"}, range={0.0, 360.0, 280.0, 320.0}, grid=true, subPlot=101, colors={{238,46,47}, {28,108,200}}, timeUnit="s", displayUnits={"K", ""});
createPlot(id=1, position={40, -1, 890, 669}, y={"whe.port_a1.m_flow", "whe.port_a2.m_flow"}, range={0.0, 360.0, 0.0, 20.0}, grid=true, subPlot=102, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"kg/s", "kg/s"});
createPlot(id=1, position={40, -1, 890, 669}, y={"whe.hex.sta_b2.T"}, range={0.0, 360.0, 290.0, 310.0}, grid=true, subPlot=103, colors={{238,46,47}}, timeUnit="s", displayUnits={"K"});
-createPlot(id=1, position={40, -1, 890, 669}, y={"whe.bypDamPos"}, range={0.0, 360.0, 0.6, 0.9}, grid=true, subPlot=104, colors={{28,108,200}}, timeUnit="s", displayUnits={"1"});
-createPlot(id=1, position={40, -1, 890, 669}, y={"whe.effCal.epsSen", "whe.effCal.epsLat"}, range={0.0, 360.0, 0.0, 1.0}, grid=true, subPlot=105, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"1", "1"});
\ No newline at end of file
+createPlot(id=1, position={40, -1, 890, 669}, y={"whe.uBypDamPos"}, range={0.0, 360.0, 0.6, 0.9}, grid=true, subPlot=104, colors={{28,108,200}}, timeUnit="s", displayUnits={"1"});
+createPlot(id=1, position={40, -1, 890, 669}, y={"whe.effCal.epsSen", "whe.effCal.epsLat"}, range={0.0, 360.0, 0.0, 1.0}, grid=true, subPlot=105, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"1", "1"});
diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mos
index ea7846eb4db..0a26ac43029 100644
--- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mos
+++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/AirToAirHeatRecovery/Examples/WheelWithVariableSpeed.mos
@@ -2,5 +2,5 @@ simulateModel("Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.Whee
createPlot(id=1, position={40, -1, 890, 669}, y={"whe.hex.sta_b1.T", "TSup.y"}, range={0.0, 360.0, 280.0, 320.0}, grid=true, subPlot=101, colors={{238,46,47}, {28,108,200}}, timeUnit="s", displayUnits={"K", ""});
createPlot(id=1, position={40, -1, 890, 669}, y={"whe.port_a1.m_flow", "whe.port_a2.m_flow"}, range={0.0, 360.0, 0.0, 20.0}, grid=true, subPlot=102, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"kg/s", "kg/s"});
createPlot(id=1, position={40, -1, 890, 669}, y={"whe.hex.sta_b2.T"}, range={0.0, 360.0, 290.0, 310.0}, grid=true, subPlot=103, colors={{238,46,47}}, timeUnit="s", displayUnits={"K"});
-createPlot(id=1, position={40, -1, 890, 669}, y={"whe.wheSpe"}, range={0.0, 360.0, 0.6, 0.9}, grid=true, subPlot=104, colors={{28,108,200}}, timeUnit="s", displayUnits={"1"});
-createPlot(id=1, position={40, -1, 890, 669}, y={"whe.effCal.epsSen", "whe.effCal.epsLat"}, range={0.0, 360.0, 0.0, 1.0}, grid=true, subPlot=105, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"1", "1"});
\ No newline at end of file
+createPlot(id=1, position={40, -1, 890, 669}, y={"whe.uSpe"}, range={0.0, 360.0, 0.6, 0.9}, grid=true, subPlot=104, colors={{28,108,200}}, timeUnit="s", displayUnits={"1"});
+createPlot(id=1, position={40, -1, 890, 669}, y={"whe.effCal.epsSen", "whe.effCal.epsLat"}, range={0.0, 360.0, 0.0, 1.0}, grid=true, subPlot=105, colors={{28,108,200}, {238,46,47}}, timeUnit="s", displayUnits={"1", "1"});
diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithBypassDamper.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithBypassDamper.mos
index d720ec01354..f4d08e091dd 100644
--- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithBypassDamper.mos
+++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithBypassDamper.mos
@@ -5,7 +5,7 @@ compareVars :=
"whe.port_a1.m_flow",
"whe.port_a2.m_flow",
"whe.hex.sta_b2.T",
- "whe.bypDamPos",
+ "whe.uBypDamPos",
"whe.effCal.epsSen",
"whe.effCal.epsLat"
};
diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithVariableSpeed.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithVariableSpeed.mos
index f19f9dbe48b..6cc467a84ae 100644
--- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithVariableSpeed.mos
+++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.AirToAirHeatRecovery.Examples.WheelWithVariableSpeed.mos
@@ -5,7 +5,7 @@ compareVars :=
"whe.port_a1.m_flow",
"whe.port_a2.m_flow",
"whe.hex.sta_b2.T",
- "whe.wheSpe",
+ "whe.uSpe",
"whe.effCal.epsSen",
"whe.effCal.epsLat"
};