Skip to content

Commit 9e6532d

Browse files
authored
Merge pull request openenergymonitor#32 from danbates2/patch-3
Update fabricheatloss.md
2 parents cf3e726 + 71e7eef commit 9e6532d

File tree

1 file changed

+44
-18
lines changed

1 file changed

+44
-18
lines changed

view/sustainable-energy/building-energy-model/fabricheatloss.md

+44-18
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,66 @@
11
## Building fabric heat loss, thermal conductivity and U-values
22

3-
Building fabric heat loss is heat loss through building elements such as:
3+
Building fabric heat loss is heat loss through building elements such as, walls, windows, floors, roofs, doors and more.
44

5-
- Walls
6-
- Floor
7-
- Loft/roof
8-
- Doors and windows
9-
- Thermal bridges
5+
Building elements are composed of materials, and a material's thermal conductivity is called a k-value. The units are in W/m.K (Watts per meter-Kelvin). Kelvin as a unit has nothing to do with the naming of k-value.
106

11-
Heat loss is calculated using the physics equation for heat conduction:
7+
A fundamental physics notation to know is that Watts is the amount of energy per unit time.
8+
Watts is quals to Joules per second. W = J/s.
129

13-
Heat Loss = k x A x (TINTERNAL - TEXTERNAL) / l
10+
Heat loss for an area, such as a wall, is calculated using U-values. The U-value is the k-value multiplied by thickness, depth, d. The units are in W/m^2.K (Watts per meter-squared-Kelvin).
11+
Multiple material layer k-values and thicknesses are simply summed together to make a building element U-value.
12+
13+
Example:
14+
15+
A wall is made up of bales of hay with a layer of 50mm wood-fibre board on each side.
16+
k-value of hay bales = 0.07W/m.K
17+
k-value of wood-fibre board = 0.04W/m.K
18+
thickness of bales = 400mm
19+
thickness of wood-fibre board (total) = 100mm
20+
21+
(0.07 * 0.4) + (0.04 * 0.1) = 0.032 W/m^2.K
22+
23+
The wall is 10 metres long and 2.6m high.
24+
25+
0.032 * 10 * 6 = 1.92 W/K
26+
27+
This means for every Kelvin, or degrees C, temperature difference, 1.344 Watts of thermal energy will be transferred.
28+
29+
A standard equation for heat conduction, which will give us the amount of heat transfer for a given temperature difference, is given here:
30+
31+
Heat Loss = k x A x (Ti - Te) / d
1432

1533
k = thermal conductivity of the element material
16-
A = cross sectional area of the element
17-
l = element thickness
34+
A = surface area of the element
35+
Ti = internal temperature
36+
Te = external temperature
37+
d = element thickness or depth
38+
39+
The straw bale wall is part of a building with an internal target temperature of 20degC.
40+
The temperature outside is -10degC. So the temperature difference Ti-Te is 30degC.
41+
1.344 * 30 = 40.32 Watts are being lost through the wall.
1842

19-
(HyperPhysics: [Heat conduction](http://hyperphysics.phy-astr.gsu.edu/hbase/thermo/heatra.html#c2))
2043

21-
**Example:**
44+
Heat transfer has a direction. In UK houses we're normally concerned with minimising heat loss, like above. The way we set up the equation means a positive result would mean *heat lost*, but in a scenario where the temperature difference is negative, this could mean a negative result, and could represent heat flowing into our building, maybe cooling is required instead of heating.
2245

23-
Imagine a house that is a hollow cube of uniform material, no windows, no openings, no draughts, just a simple hollow cube.
46+
Temperature difference is sometimes written as ΔT (delta T).
2447

25-
Lets say this cube house is made of nothing but mineral insulation 100mm thick, with internal dimensions: 7m wide, 7m long and 7m high.
48+
***Another Example:***
2649

27-
Our cube house is situated in a climate with no wind or solar gain just a stable 12C outside air temperature year round.
50+
Imagine an object that is a hollow cube of uniform material, no windows, no openings, no draughts, just a simple hollow cube.
51+
52+
Lets say this cube object-house is made of nothing but mineral insulation 100mm thick, with internal dimensions: 7m wide, 7m long and 7m high.
53+
54+
Our cube house is situated in a climate with no wind or solar gain just a stable 12C outside air temperature all year.
2855

2956
How much energy would it take to keep this hypothetical house at a stable 21C?
3057

3158
![Cube house](files/cube.jpg)
3259

33-
As we heat the house, heat will flow from the hotter internal air through the walls to the colder external air via conduction and so the equation that we need is the fundamental physics equation for heat conduction.
60+
As we heat the house, heat will move from the hotter internal air through the walls to the colder external air via conduction and so the equation that we need is the fundamental physics equation for heat conduction.
3461

35-
H = (kA / l) x (TinternalTexternal)
62+
H = (kA / l) x (TiTe)
3663

37-
3864
See the great hyperphysics site for more on the [heat conduction equation](http://hyperphysics.phy-astr.gsu.edu/hbase/hframe.html) and everything else physics.
3965

4066
The [Wikipedia table on material thermal conductivity](http://en.wikipedia.org/wiki/List_of_thermal_conductivities) tells us that mineral insulation has a thermal conductivity of 0.04 W/mK. We can take the area of the material to be the internal area of our cube house (imagine folding the cube house out so that we just have this one dimensional wall of area A and thickness l), there is of course a difference between the internal area and the external area of our cube house but lets come back to that one later and take the internal area for now which is:

0 commit comments

Comments
 (0)