Skip to content

Commit

Permalink
Minor revision
Browse files Browse the repository at this point in the history
Signed-off-by: Jun Jiang <[email protected]>
  • Loading branch information
Jun-Jiang-92 committed Jan 6, 2025
1 parent fdff1b9 commit 51434b3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ equation
June 14, 2024, by Jun Jiang:<br/>
First implementation (see <a href=\"https://github.com/RWTH-EBC/AixLib/issues/1492\">issue 1492</a>)
</li>
<li>
Dec. 18, 2024, by Jun Jiang:<br/>
Replace the wind speed warning counter with max() function for cases of negligible wind-driven airflow (see <a href=\"https://github.com/RWTH-EBC/AixLib/issues/1561\">issue 1561</a>)
</li>
</ul>
</html>", info="<html>
<p>This model contains the empirical expression developed by Caciolo et al..</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ model VentilationFlowRateSashOpening
redeclare model OpeningArea =
AixLib.Airflow.WindowVentilation.OpeningAreas.OpeningAreaSashDIN16798 (
opnTyp=AixLib.Airflow.WindowVentilation.BaseClasses.Types.WindowOpeningTypes.BottomHungInward),
heightASL=200) "Model DIN 16798, without window opening behavior"
heightASL=200,
final winOpnBeh=false)
"Model DIN 16798, without window opening behavior"
annotation (Placement(transformation(extent={{60,-20},{80,0}})));
AixLib.Airflow.WindowVentilation.EmpiricalExpressions.DIN16798 din16798_2(
winClrWidth=winClrWidth,
Expand All @@ -123,7 +125,8 @@ model VentilationFlowRateSashOpening
AixLib.Airflow.WindowVentilation.OpeningAreas.OpeningAreaSashDIN16798 (
opnTyp=AixLib.Airflow.WindowVentilation.BaseClasses.Types.WindowOpeningTypes.BottomHungInward),
heightASL=200,
winOpnBeh=true) "Model DIN 16798, with window opening behavior"
final winOpnBeh=true)
"Model DIN 16798, with window opening behavior"
annotation (Placement(transformation(extent={{100,-40},{120,-20}})));
AixLib.Airflow.WindowVentilation.EmpiricalExpressions.DIN4108 din4108_1(
winClrWidth=winClrWidth,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,18 @@ model VentilationFlowRateSimpleOpening
winClrHeight=winClrHeight,
redeclare model OpeningArea =
AixLib.Airflow.WindowVentilation.OpeningAreas.OpeningAreaSimple,
heightASL=200) "Model DIN 16798, without window opening behavior"
heightASL=200,
final winOpnBeh=false)
"Model DIN 16798, without window opening behavior"
annotation (Placement(transformation(extent={{60,-20},{80,0}})));
AixLib.Airflow.WindowVentilation.EmpiricalExpressions.DIN16798 din16798_2(
winClrWidth=winClrWidth,
winClrHeight=winClrHeight,
redeclare model OpeningArea =
AixLib.Airflow.WindowVentilation.OpeningAreas.OpeningAreaSimple,
heightASL=200,
winOpnBeh=true) "Model DIN 16798, with window opening behavior"
final winOpnBeh=true)
"Model DIN 16798, with window opening behavior"
annotation (Placement(transformation(extent={{60,-40},{80,-20}})));
AixLib.Airflow.WindowVentilation.EmpiricalExpressions.DIN4108 din4108_1(
winClrWidth=winClrWidth,
Expand Down

0 comments on commit 51434b3

Please sign in to comment.