Skip to content

Commit 729b353

Browse files
authored
Merge pull request #1416 from open-ideas/issue1415_ImportUnitsSI
Issue1415 Remove "import Modelica.Units.SI"
2 parents 6ad3d70 + 8600fca commit 729b353

File tree

40 files changed

+356
-117
lines changed

40 files changed

+356
-117
lines changed

IDEAS/Airflow/AHU/Examples/Adsolair58.mo

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ model Adsolair58 "Adsolair58 example model"
77
replaceable package Medium = IDEAS.Media.Air;
88
replaceable package MediumWater = IDEAS.Media.Water "Heating medium";
99
parameter Modelica.Units.SI.Pressure dp_nominal=100 "Constant output value";
10-
parameter SI.MassFlowRate m_flow_nominal=0.3 "Nominal air mass flow rate";
10+
parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.3 "Nominal air mass flow rate";
1111
Adsolair58HeaCoi adsolair58(
1212
redeclare package MediumAir = Medium,
1313
redeclare BaseClasses.Adsolair14200 per,
@@ -361,6 +361,11 @@ A PI controller is used to track the set point temperature.
361361
</html>", revisions="<html>
362362
<ul>
363363
<li>
364+
February 4, 2025, by Jelger Jansen:<br/>
365+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
366+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
367+
</li>
368+
<li>
364369
October 30, 2024, by Lucas Verleyen:<br/>
365370
Updates according to <a href=\"https://github.com/ibpsa/modelica-ibpsa/tree/8ed71caee72b911a1d9b5a76e6cb7ed809875e1e\">IBPSA</a>.<br/>
366371
See <a href=\"https://github.com/open-ideas/IDEAS/pull/1383\">#1383</a>

IDEAS/Airflow/Multizone/CrackOrOperableDoor.mo

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ model CrackOrOperableDoor
3535
parameter Modelica.Units.SI.Length h_a1 = 0 "Height at port a1(hasCavity=false)";
3636
parameter Modelica.Units.SI.Length h_a2 "Height at port a2(hasCavity=false)";
3737

38-
parameter SI.Length hA=(h_a1 + h_b2)/2
38+
parameter Modelica.Units.SI.Length hA=(h_a1 + h_b2)/2
3939
"Height of reference pressure at port a1 for opening (hasCavity=true) model";
40-
parameter SI.Length hB=(h_a2 + h_b1)/2
40+
parameter Modelica.Units.SI.Length hB=(h_a2 + h_b1)/2
4141
"Height of reference pressure at port b1 for opening (hasCavity=true) model";
4242

4343
final parameter Real CDCloRat(min=0, max=1)=1
@@ -165,7 +165,7 @@ model CrackOrOperableDoor
165165
"Door constantly opened" annotation (
166166
Placement(visible = true, transformation(origin = {-54, -14}, extent = {{-6, -6}, {6, 6}}, rotation = 0)));
167167

168-
parameter SI.Angle inc=Modelica.Constants.pi/2
168+
parameter Modelica.Units.SI.Angle inc=Modelica.Constants.pi/2
169169
"inclination angle (vertical=pi/2)";
170170
initial equation
171171
assert( not (interZonalAirFlowType <> IDEAS.BoundaryConditions.Types.InterZonalAirFlow.TwoPorts and useDoor and use_y),
@@ -223,6 +223,11 @@ There is no support for open doors when using only a single fluid port.
223223
revisions="<html>
224224
<ul>
225225
<li>
226+
February 4, 2025, by Jelger Jansen:<br/>
227+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
228+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
229+
</li>
230+
<li>
226231
January 30, 2025, by Klaas De Jonge:<br/>
227232
Changed wrong parameter declaration <code>doo.vZer</code> to have compatible units.
228233
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1402\">#1402</a>.

IDEAS/BoundaryConditions/Examples/StrobeInfoManager_offset.mo

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
within IDEAS.BoundaryConditions.Examples;
22
model StrobeInfoManager_offset
33
"Unit test for SimInfoManager with time offset on read data"
4-
import IDEAS;
54
extends Modelica.Icons.Example;
65
inner IDEAS.BoundaryConditions.Occupants.Extern.StrobeInfoManager strobe(
76
nOcc=10,
@@ -26,6 +25,11 @@ model StrobeInfoManager_offset
2625
Documentation(revisions="<html>
2726
<ul>
2827
<li>
28+
February 7, 2025, by Jelger Jansen:<br/>
29+
Removed <code>import IDEAS</code> statement.
30+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a>.
31+
</li>
32+
<li>
2933
December 20, 2017 by Bram van der Heijde:<br/>
3034
First implementation.
3135
</li>

IDEAS/Buildings/Components/BaseClasses/ConductiveHeatTransfer/MonoLayer.mo

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected
7373
"True when a convection + radiation equation should be used to model the layer instead of conduction";
7474

7575
public
76-
parameter SI.TemperatureDifference dT_nom_air=1
76+
parameter Modelica.Units.SI.TemperatureDifference dT_nom_air=1
7777
"Nominal temperature difference for air layers, used for linearising Rayleigh number";
7878
equation
7979
connect(E_internal, monLayDyn.E);
@@ -150,6 +150,11 @@ equation
150150
</html>", revisions="<html>
151151
<ul>
152152
<li>
153+
February 4, 2025, by Jelger Jansen:<br/>
154+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
155+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
156+
</li>
157+
<li>
153158
September 9, 2019, by Kristoff Six:<br/>
154159
Updated with <code>checkCoating</code> for issue
155160
<a href=\"https://github.com/open-ideas/IDEAS/issues/1038\">#1038</a>.

IDEAS/Buildings/Components/BaseClasses/ConductiveHeatTransfer/MultiLayer.mo

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ model MultiLayer "multiple material layers in series"
2727
parameter Boolean disableInitPortB= false
2828
"Remove initial equation at port b"
2929
annotation(Evaluate=true, Dialog(group="Dynamics"));
30-
parameter SI.TemperatureDifference dT_nom_air=1
30+
parameter Modelica.Units.SI.TemperatureDifference dT_nom_air=1
3131
"Nominal temperature difference for air layers, used for linearising Rayleigh number"
3232
annotation(Dialog(enable=linIntCon));
3333
parameter Boolean checkCoatings = false
@@ -176,6 +176,11 @@ equation
176176
</html>", revisions="<html>
177177
<ul>
178178
<li>
179+
February 4, 2025, by Jelger Jansen:<br/>
180+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
181+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
182+
</li>
183+
<li>
179184
August 9, 2022, by Filip Jorissen:<br/>
180185
Updated documentation and added parameters for issue
181186
<a href=\"https://github.com/open-ideas/IDEAS/issues/1270\">#1270</a>.

IDEAS/Buildings/Components/BaseClasses/RadiativeHeatTransfer/Examples/ZoneLwGainDistribution.mo

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
within IDEAS.Buildings.Components.BaseClasses.RadiativeHeatTransfer.Examples;
22
model ZoneLwGainDistribution
3-
import IDEAS;
43
extends Modelica.Icons.Example;
54
Modelica.Blocks.Sources.Ramp ramDir(
65
duration=1,
@@ -90,6 +89,11 @@ equation
9089
Documentation(revisions="<html>
9190
<ul>
9291
<li>
92+
February 7, 2025, by Jelger Jansen:<br/>
93+
Removed <code>import IDEAS</code> statement.
94+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a>.
95+
</li>
96+
<li>
9397
January 19, 2017 by Filip Jorissen:<br/>
9498
First implementation
9599
</li>

IDEAS/Buildings/Components/Interfaces/RectangularZoneTemplateInterface.mo

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ partial model RectangularZoneTemplateInterface
202202
parameter Interfaces.WindowDynamicsType windowDynamicsType=IDEAS.Buildings.Components.Interfaces.WindowDynamicsType.Two
203203
"Type of dynamics for glazings and frames: using zero, one combined or two states"
204204
annotation(Dialog(group="Windows", tab="Advanced"));
205-
parameter SI.TemperatureDifference dT_nominal_win=-3
205+
parameter Modelica.Units.SI.TemperatureDifference dT_nominal_win=-3
206206
"Nominal temperature difference used for linearisation, negative temperatures indicate the solid is colder"
207207
annotation(Dialog(group="Convective heat transfer", tab="Advanced"));
208208
parameter Boolean linExtCon=sim.linExtCon
@@ -215,35 +215,35 @@ partial model RectangularZoneTemplateInterface
215215
"= true, if exterior radiative heat transfer for windows should be linearised"
216216
annotation(Dialog(tab="Advanced", group="Radiative heat exchange"));
217217

218-
parameter SI.TemperatureDifference dT_nominal_bou=-1
218+
parameter Modelica.Units.SI.TemperatureDifference dT_nominal_bou=-1
219219
"Nominal temperature difference for boundary walls, used for linearisation, negative temperatures indicate the solid is colder"
220220
annotation(Dialog(tab="Advanced", group="Convective heat transfer"));
221-
parameter SI.TemperatureDifference dT_nominal_out=-3
221+
parameter Modelica.Units.SI.TemperatureDifference dT_nominal_out=-3
222222
"Nominal temperature difference for outer walls, used for linearisation, negative temperatures indicate the solid is colder"
223223
annotation(Dialog(tab="Advanced", group="Convective heat transfer"));
224-
parameter SI.TemperatureDifference dT_nominal_sla=-3
224+
parameter Modelica.Units.SI.TemperatureDifference dT_nominal_sla=-3
225225
"Nominal temperature difference of slab on ground, used for linearisation, negative temperatures indicate the solid is colder"
226226
annotation(Dialog(tab="Advanced", group="Convective heat transfer"));
227-
parameter SI.Temperature TeAvg=273.15 + 10.8
227+
parameter Modelica.Units.SI.Temperature TeAvg=273.15 + 10.8
228228
"Annual average outdoor temperature"
229229
annotation(Dialog(tab="Floor", group="Slab on ground", enable=(bouTypFlo == IDEAS.Buildings.Components.Interfaces.BoundaryType.SlabOnGround)));
230-
parameter SI.Temperature TiAvg=273.15 + 22
230+
parameter Modelica.Units.SI.Temperature TiAvg=273.15 + 22
231231
"Annual average indoor temperature"
232232
annotation(Dialog(tab="Floor", group="Slab on ground", enable=(bouTypFlo == IDEAS.Buildings.Components.Interfaces.BoundaryType.SlabOnGround)));
233-
parameter SI.TemperatureDifference dTeAvg=4
233+
parameter Modelica.Units.SI.TemperatureDifference dTeAvg=4
234234
"Amplitude of variation of monthly average outdoor temperature"
235235
annotation(Dialog(tab="Floor", group="Slab on ground", enable=(bouTypFlo == IDEAS.Buildings.Components.Interfaces.BoundaryType.SlabOnGround)));
236-
parameter SI.TemperatureDifference dTiAvg=2
236+
parameter Modelica.Units.SI.TemperatureDifference dTiAvg=2
237237
"Amplitude of variation of monthly average indoor temperature"
238238
annotation(Dialog(tab="Floor", group="Slab on ground", enable=(bouTypFlo == IDEAS.Buildings.Components.Interfaces.BoundaryType.SlabOnGround)));
239239
parameter Modelica.Units.SI.Temperature T_start_gro[3]=fill(TeAvg, 3)
240240
"Initial temperatures of the ground layers (with first value = deepest layer
241241
and last value = shallowest layer"
242242
annotation(Evaluate=true,Dialog(tab="Floor", group="Slab on ground", enable=(bouTypFlo == IDEAS.Buildings.Components.Interfaces.BoundaryType.SlabOnGround)));
243-
parameter SI.TemperatureDifference dT_nominal_intA=1
243+
parameter Modelica.Units.SI.TemperatureDifference dT_nominal_intA=1
244244
"Nominal temperature difference between zone air and interior walls, used for linearisation"
245245
annotation(Dialog(tab="Advanced", group="Convective heat transfer"));
246-
parameter SI.TemperatureDifference dT_nominal_intB=1
246+
parameter Modelica.Units.SI.TemperatureDifference dT_nominal_intB=1
247247
"Nominal temperature difference between interior walls exterior connection, used for linearisation"
248248
annotation(Dialog(tab="Advanced", group="Convective heat transfer"));
249249
replaceable parameter IDEAS.Buildings.Data.Constructions.CavityWall conTypA
@@ -496,40 +496,40 @@ partial model RectangularZoneTemplateInterface
496496
parameter Boolean hasBuildingShadeA=false
497497
"=true, to enable computation of shade cast by opposite building or object on OuterWall"
498498
annotation(Dialog(tab="Face A", group="Building shade", enable=(bouTypA==IDEAS.Buildings.Components.Interfaces.BoundaryType.OuterWall)));
499-
parameter SI.Length LShaA=0
499+
parameter Modelica.Units.SI.Length LShaA=0
500500
"Distance between shading object and wall, perpendicular to wall"
501501
annotation(Dialog(enable=hasBuildingShadeA,tab="Face A", group="Building shade"));
502-
parameter SI.Length dhShaA=0
502+
parameter Modelica.Units.SI.Length dhShaA=0
503503
"Height difference between top of shading object and top of wall A"
504504
annotation(Dialog(enable=hasBuildingShadeA,tab="Face A", group="Building shade"));
505505
parameter Boolean hasBuildingShadeB=false
506506
"=true, to enable computation of shade cast by opposite building or object on OuterWall"
507507
annotation(Dialog(tab="Face B", group="Building shade", enable=(bouTypB==IDEAS.Buildings.Components.Interfaces.BoundaryType.OuterWall)));
508-
parameter SI.Length LShaB=0
508+
parameter Modelica.Units.SI.Length LShaB=0
509509
"Distance between shading object and wall, perpendicular to wall"
510510
annotation(Dialog(enable=hasBuildingShadeB,tab="Face B", group="Building shade"));
511-
parameter SI.Length dhShaB=0
511+
parameter Modelica.Units.SI.Length dhShaB=0
512512
"Height difference between top of shading object and top of wall B"
513513
annotation(Dialog(enable=hasBuildingShadeB,tab="Face B", group="Building shade"));
514514
parameter Boolean hasBuildingShadeC=false
515515
"=true, to enable computation of shade cast by opposite building or object on OuterWall"
516516
annotation(Dialog(tab="Face C", group="Building shade", enable=(bouTypC==IDEAS.Buildings.Components.Interfaces.BoundaryType.OuterWall)));
517-
parameter SI.Length LShaC=0
517+
parameter Modelica.Units.SI.Length LShaC=0
518518
"Distance between shading object and wall, perpendicular to wall"
519519
annotation(Dialog(enable=hasBuildingShadeC,tab="Face C", group="Building shade"));
520-
parameter SI.Length dhShaC=0
520+
parameter Modelica.Units.SI.Length dhShaC=0
521521
"Height difference between top of shading object and top of wall C"
522522
annotation(Dialog(enable=hasBuildingShadeC,tab="Face C", group="Building shade"));
523523
parameter Boolean hasBuildingShadeD=false
524524
"=true, to enable computation of shade cast by opposite building or object on OuterWall"
525525
annotation(Dialog(tab="Face D", group="Building shade", enable=(bouTypD==IDEAS.Buildings.Components.Interfaces.BoundaryType.OuterWall)));
526-
parameter SI.Length LShaD=0
526+
parameter Modelica.Units.SI.Length LShaD=0
527527
"Distance between shading object and wall, perpendicular to wall"
528528
annotation(Dialog(enable=hasBuildingShadeD,tab="Face D", group="Building shade"));
529-
parameter SI.Length dhShaD=0
529+
parameter Modelica.Units.SI.Length dhShaD=0
530530
"Height difference between top of shading object and top of wall D"
531531
annotation(Dialog(enable=hasBuildingShadeD,tab="Face D", group="Building shade"));
532-
parameter SI.Length PWall = (if hasOutA then lA else 0) + (if hasOutB then lB else 0) + (if hasOutC then lC else 0) + (if hasOutD then lD else 0)
532+
parameter Modelica.Units.SI.Length PWall = (if hasOutA then lA else 0) + (if hasOutB then lB else 0) + (if hasOutC then lC else 0) + (if hasOutD then lD else 0)
533533
"Total floor slab perimeter length" annotation(Dialog(tab="Advanced", group="SlabOnGround", enable=(bouTypFlo == IDEAS.Buildings.Components.Interfaces.BoundaryType.SlabOnGround)));
534534

535535

@@ -1546,6 +1546,11 @@ components cannot be propagated.
15461546
</html>", revisions="<html>
15471547
<ul>
15481548
<li>
1549+
February 4, 2025, by Jelger Jansen:<br/>
1550+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
1551+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
1552+
</li>
1553+
<li>
15491554
January 30, 2025, by Jelger Jansen:<br/>
15501555
Updated default window glazing type to avoid obsolete type warning.
15511556
See <a href=https://github.com/open-ideas/IDEAS/issues/1402>#1402</a>

IDEAS/Buildings/Components/Validations/WindowEN673.mo

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ model WindowEN673 "Verifies U value of a glazing record"
66
annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
77

88
replaceable package Medium = IDEAS.Media.Air "Air medium";
9-
parameter SI.Temperature TZone=273.15 + 20
9+
parameter Modelica.Units.SI.Temperature TZone=273.15 + 20
1010
"Fixed interior temperature";
11-
parameter SI.Temperature TOut=273.15
11+
parameter Modelica.Units.SI.Temperature TOut=273.15
1212
"Fixed exterior temperature";
1313

1414
Modelica.Units.SI.CoefficientOfHeatTransfer U_EN673=windowEN673.layMul.port_a.Q_flow
@@ -107,7 +107,7 @@ protected
107107
TBlaSkySou=IDEAS.BoundaryConditions.Types.DataSource.Parameter,
108108
TBlaSky=TDryBulFixed));
109109

110-
parameter SI.Temperature TDryBulFixed=293.15
110+
parameter Modelica.Units.SI.Temperature TDryBulFixed=293.15
111111
"Dry bulb temperature (used if TDryBul=Parameter)";
112112
end SimInfoManagerFixedBC;
113113
initial equation
@@ -148,6 +148,11 @@ equation
148148
__Dymola_Algorithm="Lsodar"), Documentation(revisions="<html>
149149
<ul>
150150
<li>
151+
February 4, 2025, by Jelger Jansen:<br/>
152+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
153+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
154+
</li>
155+
<li>
151156
November 6, 2023, by Filip Jorissen:<br/>
152157
Set frame fraction to zero in normal window.
153158
</li>

IDEAS/Buildings/Components/Window.mo

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,16 @@ model Window "Multipane window"
124124
parameter Boolean use_trickle_vent = false
125125
"= true, to enable trickle vent"
126126
annotation(Dialog(group="Trickle vent", tab="Airflow"));
127-
parameter SI.MassFlowRate m_flow_nominal = 0
127+
parameter Modelica.Units.SI.MassFlowRate m_flow_nominal = 0
128128
"Nominal mass flow rate of trickle vent"
129129
annotation(Dialog(group="Trickle vent", tab="Airflow", enable=use_trickle_vent));
130-
parameter SI.PressureDifference dp_nominal(displayUnit="Pa") = 5
130+
parameter Modelica.Units.SI.PressureDifference dp_nominal(displayUnit="Pa") = 5
131131
"Pressure drop at nominal mass flow rate of trickle vent"
132132
annotation(Dialog(group="Trickle vent", tab="Airflow", enable=use_trickle_vent));
133133
parameter Boolean use_trickle_vent_control = false
134134
"=true, to enable trickle vent control input"
135135
annotation(Dialog(group="Trickle vent", tab="Airflow", enable=use_trickle_vent));
136-
parameter SI.Length hTrickleVent= hVertical+hRelSurfBot_a
136+
parameter Modelica.Units.SI.Length hTrickleVent= hVertical+hRelSurfBot_a
137137
"vertical distance between the floor of the zone (top) and the trickle vent"
138138
annotation(Dialog(group="Trickle vent", tab="Airflow", enable=use_trickle_vent));
139139

@@ -467,6 +467,11 @@ IDEAS.Buildings.Components.Validations.WindowEN673</a>
467467
</html>", revisions="<html>
468468
<ul>
469469
<li>
470+
February 4, 2025, by Jelger Jansen:<br/>
471+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
472+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
473+
</li>
474+
<li>
470475
November 7, 2024, by Anna Dell'Isola and Jelger Jansen:<br/>
471476
Update calculation of transmission design losses.
472477
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1337\">#1337</a>

IDEAS/Buildings/Examples/ScreenComparison.mo

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ model ScreenComparison "Comparison between a model with and without screen"
44
inner BoundaryConditions.SimInfoManager sim(interZonalAirFlowType=IDEAS.BoundaryConditions.Types.InterZonalAirFlow.OnePort)
55
annotation (Placement(transformation(extent={{-100,80},{-80,100}})));
66
replaceable package Medium = IDEAS.Media.Air;
7-
parameter SI.MassFlowRate m_flow_nominal = zoneWithScreen.V*1.2*ACH/3600
7+
parameter Modelica.Units.SI.MassFlowRate m_flow_nominal = zoneWithScreen.V*1.2*ACH/3600
88
"Nominal mass flow rate of trickle vent";
99
parameter Real ACH = 1
1010
"Ventilation air change rate";
@@ -88,6 +88,11 @@ equation
8888
Documentation(revisions="<html>
8989
<ul>
9090
<li>
91+
February 4, 2025, by Jelger Jansen:<br/>
92+
Added <code>Modelica.Units.</code> to one or multiple parameter(s) due to the removal of <code>import</code> in IDEAS/package.mo.
93+
See <a href=\"https://github.com/open-ideas/IDEAS/issues/1415\">#1415</a> .
94+
</li>
95+
<li>
9196
October 30, 2024, by Lucas Verleyen:<br/>
9297
Updates according to <a href=\"https://github.com/ibpsa/modelica-ibpsa/tree/8ed71caee72b911a1d9b5a76e6cb7ed809875e1e\">IBPSA</a>.<br/>
9398
See <a href=\"https://github.com/open-ideas/IDEAS/pull/1383\">#1383</a>

0 commit comments

Comments
 (0)