PDE and heat diffusion

A ground source heat pump can recover 3-4 times more heat than the amount of electricity used to run it. For example a 1kW compressor heat pump can recover 4kW heat. This seems like a great way to get "free" extra heat. However, there are some ifs and buts. One category of concerns regard how the electricity is produced, see the linked article.

Another, afaik not explored concern is that bringing heat to your home means putting cold into the ground. The cited article states that the ground "a few feet down is a constant 6C".

In this exercise you will explore the heat equation and calculate the heat diffusion in the ground. We will study One home sinking cold into an infinite reservoir around it. In these problems consider under what assumption you can model the spatial dimensions with 1,2 or 3 DOF. Hint: Consider different coordinate systems, rectangular, cylindrical, spherical etc.

4xx solve an elliptic stationary formulation.
6xx Solve also the seasonal (time dependent) parabolic problem.

using finite difference solution methods

Heat Equation

The general heat equation can be written

\begin{displaymath}{\partial T \over \partial t} = \kappa \nabla^2 T + {\kappa h \over \lambda}
\end{displaymath}

Where $\lambda$ is the thermal conductivity, and $\kappa={\lambda \over c_v \rho}$, is the thermal conduction capacity $c_v$ = specific heat capacity $\rho $ is material density, and finally $h$ is the heat addition.

For our heat pump problem we have:

Thermal conductivity of soil in a bore hole $\lambda = 2$ (W/(m C)
Heat generation of the ground loop $h = -8000W$
Bore hole temp $T_b = -8C$
Earth temperature $T_e = 4$ C
Surface temperature $T_s = 0$ C

We consider a heat pump installation (see figure above) with one vertical ground loop bored 45m into the ground. For numerical solution, we need to discretize it on a finite domain. A reasonable choice is a domain significantly larger than 45m. We choose a domain extending 90m horizontally, and 100m vertically.

Stationary problem (cmput 4/5/6xx)

After a sufficiently long time ${\partial T \over \partial t} = 0$ and we can write the stationary heat equation as:

\begin{displaymath}\nabla^2 T = -{h \over \lambda}
\end{displaymath}

For one ground loop, we have circular symmetry about the z-axis, and it is useful to consider cylindrical coordinates (see figure). In cylindrical coordinates $(r,\alpha,z)$ the Laplacian operator is:

\begin{displaymath}\nabla^2 T = {1 \over r}
{\partial T \over \partial r} (r {\...
...l^2 T \over \partial \alpha}
+ {\partial^2 T \over \partial z}
\end{displaymath}

The main goal here is for you to discretize the stationary heat equation and solve for the heat distribution . There are however some perhaps subtle issues in transforming the real world problem into a computatonal solution.

Time dependent problem (cmput 5/6xx)

Here we assume the heat pump is on for half the year, off the other half. Let the initial temperature in our region (before the heat pump is ever turned on) $T_0 = T_e$, and solve for time t = [1,2,3, ..., 48] months, using h=10m and h=1m given:
Specific heat capacity of (dry) soil $c_v = 840 $ (J/(kg C)
Density of soil $\rho = 1555$ (kg/$\rm {m}^3$)
Heat generation of the ground loop $h = -8000W$ for Oct-Mar, $h = 0W$ otherwise
Bore hole temp $T_b = -8C$ for Oct-Mar. Neumann otherwise.
Surface temperature $T_s = 0$ C for Oct-Mar, 15C otherwise
When does the yearly behavior turn repetitive (periodic)?

Further questions (cmput 5/6xx)

The article linked above from Green Edmonton cites the concern with using coal produced electricity. In Japan heat pumps run directly from internal combustion engines are used. What might be a reasonable estimate of system efficiency for a compression ignition engine if both the engine waste heat and heat pump heat is recovered to the house?

What would happen for a block of adjacent homes? Since so few heat pumps are installed little is known about the cumulative effect. Do they each have a detrimental effect on the neighbors? Will we get permafrost? Consider a row along a street and a dense 2D array in a subdivision with typical Edmonton lot sizes. How can you model each of these cases? What symmetries exist? How many dimensions do do you need to solve the PDE?

Will we get permafrost?

Hot off the press, famous British physicist and adviser to the British government on energy policy Prof. David MacKay says YES.

Now these statements always comes with some qualifications. David assumes a relatively dense suburb and that heat pumps will be installed on relatively poorly insulated buildings without upgrades to insulation. Instead he recommends that Britain adopts air source heat pumps. You can find details about his model and reasoning here:Sustainable Energy - without the hot air, p301-306

For those who solve the time dependent problem, notice how the wave propagates through the ground. David made a nice illustration of this (right). Assuming a sinusoidal boundary condition at the ground, the temperature at each depth also varies sinusoidally, but phase shifted. Notice how the temp at "level 3" is completely out of phase with the surface, so it is the coldest in the middle of the summer! (Level three is 5-9 meters down depending on the soil type.)

419/675 Computational Differential Equations