| Name | Description |
|---|---|
| Thermal properties of opaque constructions | |
| Construction with 100 mm insulation and 200 mm concrete | |
| Construction with 120mm brick | |
| Construction with 200mm concrete |
Buildings.HeatTransfer.Data.OpaqueConstructions.Generic
| Type | Name | Default | Description |
|---|---|---|---|
| Integer | nLay | Number of layers | |
| Generic | material[nLay] | Layer by layer declaration of material |
record Generic "Thermal properties of opaque constructions" parameter Integer nLay(min=1, fixed=true) "Number of layers";parameter Solids.Generic material[nLay] "Layer by layer declaration of material"; final parameter Real R(unit="m2.K/W")=sum(material[:].R) "Thermal resistance per unit area";end Generic;
Buildings.HeatTransfer.Data.OpaqueConstructions.Insulation100Concrete200
| Type | Name | Default | Description |
|---|---|---|---|
| Integer | nLay | 2 | Number of layers |
| Generic | material[nLay] | {Solids.InsulationBoard(x=0.... | Layer by layer declaration of material |
record Insulation100Concrete200 =
Buildings.HeatTransfer.Data.OpaqueConstructions.Generic (
material = {Solids.InsulationBoard(x=0.1),
Solids.Concrete(x=0.2)},
final nLay=2) "Construction with 100 mm insulation and 200 mm concrete";
Buildings.HeatTransfer.Data.OpaqueConstructions.Brick120
| Type | Name | Default | Description |
|---|---|---|---|
| Integer | nLay | 1 | Number of layers |
| Generic | material[nLay] | {Solids.Brick(x=0.12)} | Layer by layer declaration of material |
record Brick120 =
Buildings.HeatTransfer.Data.OpaqueConstructions.Generic (
material = {Solids.Brick(x=0.12)},
final nLay = 1) "Construction with 120mm brick";
Buildings.HeatTransfer.Data.OpaqueConstructions.Concrete200
| Type | Name | Default | Description |
|---|---|---|---|
| Integer | nLay | 1 | Number of layers |
| Generic | material[nLay] | {Solids.Concrete(x=0.2)} | Layer by layer declaration of material |
record Concrete200 =
Buildings.HeatTransfer.Data.OpaqueConstructions.Generic (
material = {Solids.Concrete(x=0.2)},
final nLay = 1) "Construction with 200mm concrete";