Skip to content

Commit

Permalink
revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathadon committed Nov 13, 2023
1 parent 77c85d0 commit 1bc67d6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion IDEAS/Buildings/Components/Interfaces/SolBus.mo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
within IDEAS.Buildings.Components.Interfaces;
expandable connector SolBus
connector SolBus
"Bus containing solar radiation for various incidence angles as well as external convection coefficients"
parameter Boolean outputAngles = true "Set to false when linearising in Dymola only";
IDEAS.Buildings.Components.Interfaces.RealConnector HDirTil(unit="W/(m2)",start=100) annotation ();
Expand Down
2 changes: 1 addition & 1 deletion IDEAS/Buildings/Components/Interfaces/WeaBus.mo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
within IDEAS.Buildings.Components.Interfaces;
expandable connector WeaBus "Data bus that stores weather data"
connector WeaBus "Data bus that stores weather data"
parameter Integer numSolBus;
parameter Boolean outputAngles = true "Set to false when linearising in Dymola only";

Expand Down
2 changes: 1 addition & 1 deletion IDEAS/Buildings/Components/Interfaces/ZoneBus.mo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
within IDEAS.Buildings.Components.Interfaces;
connector ZoneBus
expandable connector ZoneBus
replaceable package Medium =
Modelica.Media.Interfaces.PartialMedium "Medium in the component";
parameter Integer numIncAndAziInBus
Expand Down
4 changes: 2 additions & 2 deletions IDEAS/Buildings/Components/Window.mo
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ model Window "Multipane window"
m_flow_nominal=m_flow_nominal,
use_y = use_trickle_vent_control)
if use_trickle_vent and sim.interZonalAirFlowType <> IDEAS.BoundaryConditions.Types.InterZonalAirFlow.None
"Trickle vent"
"Trickle vent. Height assumed at the middle of the surface, i.e. at the reference pressure."
annotation (Placement(visible = true, transformation(origin = {0, -158}, extent = {{20, 88}, {40, 68}}, rotation = 0)));
replaceable
IDEAS.Buildings.Components.BaseClasses.RadiativeHeatTransfer.SwWindowResponse
Expand Down Expand Up @@ -183,7 +183,7 @@ model Window "Multipane window"
Modelica.Blocks.Sources.RealExpression y_window_trunc(y = max(0, min(1, y_window_internal)))
"Truncated control signal" annotation (
Placement(visible = true, transformation(origin = {-10, -90}, extent = {{-10, 10}, {10, -10}}, rotation = 90)));
Airflow.Multizone.ReversibleDensityColumn col_trickle(redeclare package Medium = Medium) if sim.interZonalAirFlowType == IDEAS.BoundaryConditions.Types.InterZonalAirFlow.TwoPorts "Column for port trickle vent" annotation(
Airflow.Multizone.ReversibleDensityColumn col_trickle(redeclare package Medium = Medium, h=hVertical/2) if sim.interZonalAirFlowType == IDEAS.BoundaryConditions.Types.InterZonalAirFlow.TwoPorts "Column for port trickle vent" annotation(
Placement(transformation(origin = {112, -40}, extent = {{50, -10}, {70, 10}}, rotation = 180)));
protected
Modelica.Blocks.Interfaces.RealInput y_window_internal;
Expand Down
4 changes: 2 additions & 2 deletions IDEAS/Buildings/Examples/ZoneExample.mo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ model ZoneExample
parameter Modelica.Units.SI.Length l=4 "Room length";
parameter Modelica.Units.SI.Length w=4 "Room width";
parameter Modelica.Units.SI.Length h=2.7 "Room height";
inner BoundaryConditions.SimInfoManager sim(interZonalAirFlowType=IDEAS.BoundaryConditions.Types.InterZonalAirFlow.OnePort)
inner BoundaryConditions.SimInfoManager sim(interZonalAirFlowType=IDEAS.BoundaryConditions.Types.InterZonalAirFlow.TwoPorts)
"Data reader"
annotation (Placement(transformation(extent={{-96,76},{-76,96}})));
IDEAS.Buildings.Components.Zone zone(
Expand Down Expand Up @@ -122,4 +122,4 @@ First implementation.
StopTime=1000000,
Tolerance=1e-06,
__Dymola_Algorithm="Lsodar"));
end ZoneExample;
end ZoneExample;

0 comments on commit 1bc67d6

Please sign in to comment.