Name | Description |
---|---|
Generic | Thermal properties of opaque constructions |
Insulation100Concrete200 | Construction with 100 mm insulation and 200 mm concrete |
Brick120 | Construction with 120mm brick |
Concrete200 | Construction with 200mm concrete |
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;
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";
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";
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";