You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
within IDEAS.Fluid.HeatExchangers.RadiantSlab.BaseClasses;
2
2
record RadiantSlabChar
3
-
"Record containing all parameters for a given a floor heating of concrete core activation"
4
-
5
-
// The terminology from prEN 15377 is followed, even if I find the development of the theory
6
-
// by Koschenz and Lehmann better (see Thermoaktive Bauteilsysteme tabs, from Empa)
7
-
8
-
// First Version 20110622
9
-
10
-
// Changed 20110629:
11
-
// Important: this record ALSO contains the parameters that are specific to the building.
12
-
3
+
"Record containing all parameters for a given thermally activated building system (TABS) or a floor heating system."
13
4
extends Modelica.Icons.Record;
14
5
15
6
parameterBoolean tabs =true
16
-
"true if the model is used for tabs, false if the model is used for floor heating. This is used for the correction factor of the thermal resistances in EmbeddedPipe";
17
-
7
+
"= true, if the model is used for TABS (assuming no insulation layer below the slab).";
18
8
parameter Modelica.Units.SI.Length T(
19
9
min=0.15,
20
-
max=0.3) =0.2"Pipe spacing, limits imposed by prEN 15377-3 p22";
10
+
max=0.3) =0.2"Pipe spacing, limits imposed by EN 15377-3 p22";
21
11
parameter Modelica.Units.SI.Length d_a=0.02"External diameter of the pipe";
22
12
parameter Modelica.Units.SI.Length s_r=0.0025"Thickness of the pipe wall";
"Convective heat transfer coefficient between the floor layer and the room below.
39
+
In case of a floor heating system, this variable is set equal to the ratio of the heat conductivity and thickness of the insulation"annotation(Dialog(enable=S_1<=0.3*T and S_2<=0.3*T));
46
40
47
41
annotation (Documentation(info="<html>
48
-
<p><b>Description</b> </p>
49
-
<p>Record containing the properties of a floor heating or TABS. The terminology from prEN 15377 is followed, even if I find the development of the theory by Koschenz and Lehmann better (see Thermoaktive Bauteilsysteme tabs, from Empa)</p>
50
-
<h4>Model use</h4>
51
-
<ol>
52
-
<li>It's important to set at least the floor surface to something different from 1</li>
53
-
<li>The embeddedPipe model has a few assertions to check the validity of some parameters and their combinations.</li>
54
-
</ol>
42
+
<p>
43
+
Record containing the properties of a thermally activated building system (TABS) or floor heating system.
44
+
The terminology from EN 15377 is followed, while the
45
+
<a href=modelica://IDEAS.Fluid.HeatExchangers.RadiantSlab.EmbeddedPipe>EmbeddedPipe</a> model
46
+
itself is based on the model of Koschenz and Lehmann.
47
+
</p>
48
+
<p>
49
+
Note that this record contains parameters that are related to the building envelope, i.e. construction layer thicknesses and material properties.
50
+
The user is responsible to use consistent parameters for the building envelope components and the embedded pipe model.
51
+
When filling in the parameters, take into account that:
52
+
<ul>
53
+
<li>
54
+
the insulation parameters (<code>lambda_i</code>, <code>d_i</code>) only need to be provided if
55
+
you model a floor heating system (if <code>tabs=false</code>)
56
+
</li>
57
+
<li>
58
+
the convective heat transfer coefficients (<code>alp1</code> and <code>alp2</code>) only need to be provided if
59
+
<code>S_1</code> and/or <code>S_2</code> are smaller or equal to 0.3 times the pipe spacing (<code>T</code>).
60
+
</li>
61
+
<li>
62
+
the floor layer thicknesses (<code>S_1</code>, <code>S_2</code>) and pipe diameter (<code>d_a</code>) are subject to some constraints,
63
+
which are checked in the <a href=modelica://IDEAS.Fluid.HeatExchangers.RadiantSlab.EmbeddedPipe>EmbeddedPipe</a> model, i.e.:
64
+
<ul>
65
+
<li>
66
+
<code>d_a ≥ S_1+S_2</code>
67
+
</li>
68
+
<li>
69
+
if <code>tabs=false</code>, then <code>alp2 ≥ 1.212</code>
70
+
</li>
71
+
<li>
72
+
if <code>tabs=false</code>, then <code>d_a/2 ≥ S_2</code>
73
+
</li>
74
+
</ul>
75
+
</li>
76
+
</ul>
77
+
</p>
78
+
<p>
79
+
The default values of convective heat transfer coefficients <code>alp1</code> and <code>alp2</code> (in case of <code>tabs=true</code>)
80
+
are determined using the interior convection correlations as provided in the documentation of
0 commit comments