Buildings.ThermalZones.Detailed.Examples.FFD

Package that tests the models for coupled simulation between Modelica and Fast Fluid Dynamics

Information

This package tests the coupled simulation of the model Buildings.ThermalZones.Detailed.CFD with the Fast Fluid Dynamics (FFD) program. Different cases with various boundary conditions are evaluated. The models in this package do not represent realistic buildings, but are rather designed to test the coupled simulation.

Extends from Modelica.Icons.ExamplesPackage (Icon for packages containing runnable examples).

Package Content

Name Description
Buildings.ThermalZones.Detailed.Examples.FFD.UsersGuide UsersGuide  
Buildings.ThermalZones.Detailed.Examples.FFD.Tutorial Tutorial Tutorial with step by step instructions for how to do coupled simulation
Buildings.ThermalZones.Detailed.Examples.FFD.ForcedConvection ForcedConvection Ventilation with forced convection in an empty room
Buildings.ThermalZones.Detailed.Examples.FFD.NaturalConvectionWithControl NaturalConvectionWithControl A case of natural convection with feedback loop control
Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyConstructionBoundary RoomOnlyConstructionBoundary Test model for natural convection in an empty room with only construction boundary.
Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyExteriorWallNoWindow RoomOnlyExteriorWallNoWindow Natural convection in an empty room with only exterior walls without windows.
Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlySurfaceBoundary RoomOnlySurfaceBoundary Natural convection in an empty room with only surface boundary
Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithShade WindowWithShade Natural convection in an empty room with exterior walls, windows and shades
Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithoutShade WindowWithoutShade Natural convection in an empty room with exterior walls, windows without shade
Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses BaseClasses Package with base classes for Buildings.ThermalZones.Detailed.Examples.FFD

Buildings.ThermalZones.Detailed.Examples.FFD.ForcedConvection Buildings.ThermalZones.Detailed.Examples.FFD.ForcedConvection

Ventilation with forced convection in an empty room

Buildings.ThermalZones.Detailed.Examples.FFD.ForcedConvection

Information

This model tests the coupled simulation of Buildings.ThermalZones.Detailed.CFD with the FFD program by simulating the ventilation with forced convection in an empty room. Figure (a) shows the schematic of the FFD simulation and Figure (b) shows streamlines and contours of the horizontal velocity U as simulated by the FFD.

image

Figure (a)

image

Figure (b)

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom (Partial model for a room).

Parameters

TypeNameDefaultDescription
IntegernConExtWin0Number of constructions with a window
IntegernConBou0Number of surface that are connected to constructions that are modeled inside the room
IntegernSurBou6Number of surface that are connected to the room air volume
IntegernConExt0Number of exterior constructions withour a window
IntegernConPar0Number of partition constructions

Modelica definition

model ForcedConvection "Ventilation with forced convection in an empty room" extends Modelica.Icons.Example; extends Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom( roo( surBou( name={"East Wall","West Wall","North Wall","South Wall","Ceiling","Floor"}, A={0.9,0.9,1,1,1,1}, til={Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Ceiling, Buildings.Types.Tilt.Floor}, each absIR=1e-5, each absSol=1e-5, each boundaryCondition= Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature), nPorts=2, portName={"Inlet","Outlet"}, cfdFilNam="modelica://Buildings/Resources/Data/ThermalZones/Detailed/Examples/FFD/ForcedConvection.ffd", samplePeriod=6, linearizeRadiation=true, massDynamics=Modelica.Fluid.Types.Dynamics.DynamicFreeInitial), nSurBou=6); HeatTransfer.Sources.FixedTemperature TWal[nSurBou](each T=283.15) "Temperature of other walls"; Buildings.Fluid.Sources.Boundary_pT bouOut( nPorts=1, redeclare package Medium = MediumA); Fluid.Sources.MassFlowSource_T bounIn( nPorts=1, redeclare package Medium = MediumA, m_flow=0.01, T=283.15); equation for i in 1:nSurBou loop connect(TWal[i].port, roo.surf_surBou[i]); end for; connect(bounIn.ports[1], roo.ports[1]); connect(bouOut.ports[1], roo.ports[2]); end ForcedConvection;

Buildings.ThermalZones.Detailed.Examples.FFD.NaturalConvectionWithControl Buildings.ThermalZones.Detailed.Examples.FFD.NaturalConvectionWithControl

A case of natural convection with feedback loop control

Buildings.ThermalZones.Detailed.Examples.FFD.NaturalConvectionWithControl

Information

This model tests the coupled simulation of Buildings.ThermalZones.Detailed.CFD with the FFD program by simulating natural convection in an empty room with a PI controller and a heater to maintain the temperature at room center to be 2°C.

The configuration of the simulation is the same as Buildings.ThermalZones.Detailed.Examples.FFD.Tutorial.NaturalConvection, except that a heater with PI controller is added to maintain the desired room temperature.

The temperature at the central room is sent to the PI controller as measured temperature. Based on the difference of set temperature and measured temperaure PI controller sends signal to the heater to yield the heat flow. The heat flow is then injected into the room through the heat port as convective heat flow. After receving the heat flow from Modelica, the FFD uniformly distributes it into the space.

Please note that roo.yCFD[1] is the temperature at the center of the room and roo.yCFD[2] is the velocity magnitude at the center of the room.

Figure (a) shows the velocity vectors and temperature contours in degree Celsius on the X-Z plane at Y = 0.5 m as simulated by the FFD.

image

Figure (a)

Extends from Buildings.ThermalZones.Detailed.Examples.FFD.Tutorial.NaturalConvection (Tutorial for Natural Convection case).

Parameters

TypeNameDefaultDescription
IntegernConExtWin0Number of constructions with a window
IntegernConBou0Number of surface that are connected to constructions that are modeled inside the room
IntegernSurBou6Number of surface that are connected to the room air volume
IntegernConExt0Number of exterior constructions withour a window
IntegernConPar0Number of partition constructions

Modelica definition

model NaturalConvectionWithControl "A case of natural convection with feedback loop control" extends Buildings.ThermalZones.Detailed.Examples.FFD.Tutorial.NaturalConvection ( roo( nPorts=0, useCFD=true, samplePeriod=30, cfdFilNam = "modelica://Buildings/Resources/Data/ThermalZones/Detailed/Examples/FFD/NaturalConvectionWithControl.ffd", massDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial)); HeatTransfer.Sources.PrescribedHeatFlow preHeatFlo; Buildings.Controls.Continuous.LimPID conPID( yMin=0, Ti=120, k=1, yMax=2, u_m(final unit="K", displayUnit="degC"), u_s(final unit="K", displayUnit="degC")); Modelica.Blocks.Sources.Constant TSet(k(final unit="K", displayUnit="degC")=275.15) "Temperature set point"; equation connect(roo.yCFD[1], conPID.u_m); connect(TSet.y, conPID.u_s); connect(preHeatFlo.port, roo.heaPorAir); connect(conPID.y, preHeatFlo.Q_flow); end NaturalConvectionWithControl;

Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyConstructionBoundary Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyConstructionBoundary

Test model for natural convection in an empty room with only construction boundary.

Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyConstructionBoundary

Information

This model tests the copuled simulation of Buildings.ThermalZones.Detailed.CFD with the FFD program by simulating the natural convection in an empty room with only construction boundaries.

Figure (a) shows the schematic of the FFD simulation. The room is 1 meter in length, width and height. The temperature of the east wall is set to 40°C and the rest walls are at 10°C. The initial value for the temperature of the room air is 30°C. Two sensors are placed in the room center at (0.5 m, 0.5 m, 0.5 m) that measure the temperature and the velocity.

image

Figure (a)

Figure (b) shows the velocity vectors and temperature contours in degree Celsius on the X-Z plane at Y = 0.5 m as simulated by the FFD.

image

Figure (b)

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom (Partial model for a room).

Parameters

TypeNameDefaultDescription
GenericmatLayWalmatLayWal(final nLay=1, mate...Construction material for all the envelopes
IntegernConExtWin0Number of constructions with a window
IntegernConBou6Number of surface that are connected to constructions that are modeled inside the room
IntegernSurBou0Number of surface that are connected to the room air volume
IntegernConExt0Number of exterior constructions withour a window
IntegernConPar0Number of partition constructions

Modelica definition

model RoomOnlyConstructionBoundary "Test model for natural convection in an empty room with only construction boundary." extends Modelica.Icons.Example; parameter Buildings.HeatTransfer.Data.OpaqueConstructions.Generic matLayWal( final nLay=1, material={HeatTransfer.Data.Solids.Steel(x=0.001)}, roughness_a=Buildings.HeatTransfer.Types.SurfaceRoughness.Smooth) "Construction material for all the envelopes"; extends Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom( roo( datConBou( name={"East Wall","West Wall","North Wall","South Wall","Floor","Ceiling"}, layers={matLayWal,matLayWal,matLayWal,matLayWal,matLayWal,matLayWal}, each A=1*1, til={Buildings.Types.Tilt.Wall,Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall,Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Floor,Buildings.Types.Tilt.Ceiling}, boundaryCondition={Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature,Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature,Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature})), nConBou=6); Buildings.HeatTransfer.Sources.FixedTemperature TWalRes[nConBou - 1]( each T=283.15) "Boundary condition for the other walls"; HeatTransfer.Sources.FixedTemperature TEasWal(T=313.15) "Temperature of the east wall"; equation for i in 1:nConBou - 1 loop connect(TWalRes[i].port, roo.surf_conBou[i + 1]); end for; connect(TEasWal.port, roo.surf_conBou[1]); end RoomOnlyConstructionBoundary;

Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyExteriorWallNoWindow Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyExteriorWallNoWindow

Natural convection in an empty room with only exterior walls without windows.

Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlyExteriorWallNoWindow

Information

This model tests the coupled simulation of Buildings.ThermalZones.Detailed.CFD with the FFD program by simulating the natural convection in an empty room with only exterior walls and without windows.

Figure (a) shows the schematic of the FFD simulation. The room is 1 meter in length, width and height. The walls are exposed to the ambient environment (cold winter night in Chicago) and the insulation is very poor. The initial values are for the temperatures of the walls 20°C and for temperature of the air 30°C. All temperature drop quickly due to the heat loss. Two sensors are placed in the room center at (0.5 m, 0.5 m, 0.5 m) that measure the temperature and the velocity.

image

Figure (a)

Figure (b) shows the velocity vectors and temperature contours in degree Celsius on the X-Z plane at Y = 0.5 m as simulated by the FFD. In the cold mid-night of Chicago, the temperature of the ceiling is the lowest and the temperature of the ground floor is the highest.

image

Figure (b)

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom (Partial model for a room).

Parameters

TypeNameDefaultDescription
GenericmatLayWalmatLayWal(final nLay=1, mate...Construction material for all the envelopes
IntegernConExtWin0Number of constructions with a window
IntegernConBou0Number of surface that are connected to constructions that are modeled inside the room
IntegernSurBou0Number of surface that are connected to the room air volume
IntegernConExt6Number of exterior constructions withour a window
IntegernConPar0Number of partition constructions

Modelica definition

model RoomOnlyExteriorWallNoWindow "Natural convection in an empty room with only exterior walls without windows." extends Modelica.Icons.Example; parameter Buildings.HeatTransfer.Data.OpaqueConstructions.Generic matLayWal( final nLay=1, material={HeatTransfer.Data.Solids.Steel(x=0.001)}, roughness_a=Buildings.HeatTransfer.Types.SurfaceRoughness.Smooth) "Construction material for all the envelopes"; extends Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom( nConExt=6, nConExtWin=0, nConPar=0, nConBou=0, nSurBou=0, roo(nConExt=nConExt, datConExt( name={"East Wall","West Wall","North Wall","South Wall","Floor","Ceiling"}, layers={matLayWal,matLayWal,matLayWal,matLayWal,matLayWal,matLayWal}, each A=1*1, til={Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Floor, Buildings.Types.Tilt.Ceiling}, boundaryCondition={ Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature}), samplePeriod=30)); end RoomOnlyExteriorWallNoWindow;

Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlySurfaceBoundary Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlySurfaceBoundary

Natural convection in an empty room with only surface boundary

Buildings.ThermalZones.Detailed.Examples.FFD.RoomOnlySurfaceBoundary

Information

This model tests the coupled simulation of Buildings.ThermalZones.Detailed.CFD with the FFD program by simulating the natural convection in an empty room with only surface boundaries. It is also used to test the adiabatic boundary conditon in the FFD code.

Figure (a) shows the schematic of the FFD simulation. The following conditions are applied in the Modelica model:

image

Figure (a)

Figure (b) shows the velocity vectors and temperature contours in degree Celsius on the X-Z plane at Y = 0.5 m as simulated by the FFD.

image

Figure (b)

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom (Partial model for a room).

Parameters

TypeNameDefaultDescription
IntegernConExtWin0Number of constructions with a window
IntegernConBou0Number of surface that are connected to constructions that are modeled inside the room
IntegernSurBou6Number of surface that are connected to the room air volume
IntegernConExt0Number of exterior constructions withour a window
IntegernConPar0Number of partition constructions

Modelica definition

model RoomOnlySurfaceBoundary "Natural convection in an empty room with only surface boundary" extends Modelica.Icons.Example; extends Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom(roo( linearizeRadiation=false, samplePeriod=60, surBou( name={"East Wall","West Wall","North Wall","South Wall","Floor","Ceiling"}, each A=1*1, til={Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Floor, Buildings.Types.Tilt.Ceiling}, each absIR=1e-5, each absSol=1e-5, boundaryCondition={ Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.HeatFlowRate, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.HeatFlowRate, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.HeatFlowRate, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.HeatFlowRate})), nSurBou=6); Buildings.HeatTransfer.Sources.FixedTemperature TWesWal(T=283.15) "Boundary condition for the west wall"; HeatTransfer.Sources.FixedTemperature TEasWal(T=313.15) "Temperature of the east wall"; equation connect(TEasWal.port, roo.surf_surBou[1]); connect(TWesWal.port, roo.surf_surBou[2]); end RoomOnlySurfaceBoundary;

Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithShade Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithShade

Natural convection in an empty room with exterior walls, windows and shades

Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithShade

Information

This model tests the cosimulation of Buildings.ThermalZones.Detailed.CFD with the FFD program by simulating natural convection in a room with only exterior walls and windows with shades.

Figure (a) show the schematic of FFD simulation. The walls and the windows are exposed to the ambient environment. The wall is well insulated and the initial temperature is 20°C. The initial temperature for the room air is 17°C.

image

Figure (a)

Figure (b) shows the velocity vectors and temperature contours in degree Celsius on the X-Z plane at Y = 0.5 m, at t = 300 s as simulated by the FFD.

image

Figure (b)

Note: The current version of the FFD program does not support a moving boundary. Thus, the shade can only be at a fixed position as determined by the parameter uSha_fixed={0.5,0.5}.

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom (Partial model for a room).

Parameters

TypeNameDefaultDescription
IntegernConExtWin2Number of constructions with a window
IntegernConBou0Number of surface that are connected to constructions that are modeled inside the room
IntegernSurBou0Number of surface that are connected to the room air volume
IntegernConExt4Number of exterior constructions withour a window
IntegernConPar0Number of partition constructions
Insulation100Concrete200matLayExt Construction material for exterior walls
DoubleClearAir13ClearglaSysglaSys(UFra=2, shade=Buildin...Data record for the glazing system

Modelica definition

model WindowWithShade "Natural convection in an empty room with exterior walls, windows and shades" extends Modelica.Icons.Example; extends Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom( nConExt=4, nConExtWin=2, nConPar=0, nConBou=0, nSurBou=0, roo( nConExt=nConExt, nConExtWin=nConExtWin, datConExt( name={"North Wall","South Wall","Floor","Ceiling"}, each A=1, layers={matLayExt,matLayExt,matLayExt,matLayExt}, til={ Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Floor, Buildings.Types.Tilt.Ceiling}, boundaryCondition={ Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature}), datConExtWin( name={"East Wall","West Wall"}, layers={matLayExt,matLayExt}, each A=1, glaSys={glaSys,glaSys}, each wWin=1, each hWin=0.5, each fFra=0.2, til={ Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall}, azi={ Buildings.Types.Azimuth.E, Buildings.Types.Azimuth.W}, boundaryCondition={ Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature}), uSha_fixed={0.5,0.5}, samplePeriod=10, linearizeRadiation=true, cfdFilNam="modelica://Buildings/Resources/Data/ThermalZones/Detailed/Examples/FFD/WindowWithShade.ffd")); parameter HeatTransfer.Data.OpaqueConstructions.Insulation100Concrete200 matLayExt "Construction material for exterior walls"; parameter HeatTransfer.Data.GlazingSystems.DoubleClearAir13Clear glaSys(UFra=2, shade=Buildings.HeatTransfer.Data.Shades.Gray(), haveExteriorShade=false, haveInteriorShade=true) "Data record for the glazing system"; end WindowWithShade;

Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithoutShade Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithoutShade

Natural convection in an empty room with exterior walls, windows without shade

Buildings.ThermalZones.Detailed.Examples.FFD.WindowWithoutShade

Information

This model tests the coupled simulation of Buildings.ThermalZones.Detailed.CFD with the FFD program by simulating natural convection in a room with only exterior walls and windows.

Figure (a) shows the schematic of FFD simulation. The walls are exposed to the ambient environment. Both the wall and window are well insulated and the initial temperature of the walls and the window is 20°C.

image

Figure (a)

Figure (b) shows the velocity vectors and temperature contour in degree Celsius on the X-Z plane at Y = 0.5 m as simulated by the FFD.

image

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom (Partial model for a room).

Parameters

TypeNameDefaultDescription
IntegernConExtWin2Number of constructions with a window
IntegernConBou0Number of surface that are connected to constructions that are modeled inside the room
IntegernSurBou0Number of surface that are connected to the room air volume
IntegernConExt4Number of exterior constructions withour a window
IntegernConPar0Number of partition constructions
Insulation100Concrete200matLayExt Construction material for exterior walls
DoubleClearAir13ClearglaSysglaSys(UFra=2, shade=Buildin...Data record for the glazing system

Modelica definition

model WindowWithoutShade "Natural convection in an empty room with exterior walls, windows without shade" extends Modelica.Icons.Example; extends Buildings.ThermalZones.Detailed.Examples.FFD.BaseClasses.PartialRoom( nConExt=4, nConExtWin=2, nConPar=0, nConBou=0, nSurBou=0, roo( nConExt=nConExt, nConExtWin=nConExtWin, datConExt( name={"North Wall","South Wall","Floor","Ceiling"}, each A=1, layers={matLayExt,matLayExt,matLayExt,matLayExt}, til={Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Floor, Buildings.Types.Tilt.Ceiling}, boundaryCondition={ Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature}), datConExtWin( name={"East Wall","West Wall"}, layers={matLayExt,matLayExt}, each A=1, glaSys={glaSys,glaSys}, each wWin=1, each hWin=0.5, each fFra=0.2, til={ Buildings.Types.Tilt.Wall, Buildings.Types.Tilt.Wall}, azi={ Buildings.Types.Azimuth.E, Buildings.Types.Azimuth.W}, boundaryCondition={ Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature, Buildings.ThermalZones.Detailed.Types.CFDBoundaryConditions.Temperature}), cfdFilNam="modelica://Buildings/Resources/Data/ThermalZones/Detailed/Examples/FFD/WindowWithoutShade.ffd", uSha_fixed={0, 0})); parameter HeatTransfer.Data.OpaqueConstructions.Insulation100Concrete200 matLayExt "Construction material for exterior walls"; parameter HeatTransfer.Data.GlazingSystems.DoubleClearAir13Clear glaSys(UFra=2, shade=Buildings.HeatTransfer.Data.Shades.Gray(), haveExteriorShade=false, haveInteriorShade=false) "Data record for the glazing system"; end WindowWithoutShade;