Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
2

How does CondFD deal with no-mass materials?

asked 2023-02-27 15:51:13 -0500

lofilippini's avatar

updated 2023-03-27 19:39:52 -0500

I'm assessing the performance of a DOE office building using different envelope materials. I'm using phase change materials and comparing the EUI/TEDI with the original envelope (thermal insulation). The thing is that this insulation, in the original model, is represented by a thermal resistance only, i.e., a Material:NoMass class, which doesn't require other properties such as density or specific heat, other than the R-value and absorptance values (thermal, solar and visible).

Since CondFD uses a dynamic spatial discretization depending on the material's physical and thermal properties, how does the algorithm discretize a no-mass material? What information will it use?

I don't get any errors simulating the original thermal insulation, though. In fact, the results seem to be really coherent, but I need to understand the software's procedure.

Reading the engineering reference, the CTF algorithm has a solution for the no-mass materials:

For “no mass” layers, the density (rho) and the specific heat (cp) variables will be assigned zero values. In addition, the thickness (dx) will be equated with the user-defined R-Value and conductivity (rk) will be assigned a value of unity. In addition, the number of nodes for the “no mass” layer will be set to 1. This handles resistive layers correctly without resorting to assigning the properties of air to the “no mass” layer.

Thinking upon the fully-implicit scheme used in the CondFD to solve the heat diffusion equation (the scheme I'm using), this approach would eliminate the energy storage term, the transient term.

image description

This would leave us with temperature terms with respect to iteration j+1, which doesn't make much sense. Does CondFD correct this?

After all, this would transform a transient problem into a steady state problem within the control volume of the no-mass material, with time-dependent boundary conditions, while the other wall layers still have transient behaviors

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
3

answered 2023-03-18 22:43:12 -0500

Hi, very interesting question. The answer is found in HeatBalFiniteDifferenceManager.cc since it appears to not be documented elsewhere (see e.g. line 1934 onward in the IntInterfaceNodeEqns function).

At a node separating 2 massless materials, $C_p$ and $\rho$ are 0 and simplifying the implicit heat equation in your post yields

$T_i^{j+1} = \frac{R_{i-1} T_{i+1}^{j+1} + R_{i+1} T_{i-1}^{j+1}}{R_{i+1}+R_{i-1}}$,

where $T_i^{j+1}$ is the temperature at node $i$ at the newest timestep $j + 1$, and $R$ is thermal resistance. Transient behavior at node $i$ may be driven by transient boundary conditions or propagate from non-massless materials in the model. This is the equation used by EnergyPlus in this situation (line 1942 in the code).

When a node separates a massless material (e.g. on the left at $i-1$) and a non-massless material (e.g. on the right at $i+1$), $C_p$ and $\rho$ are retained for the non-massless material in the implicit heat equation. However, the $\frac{k_E}{\Delta x}$ term corresponding to the massless material is related to the thermal resistance of the massless material $R_{i-1}$ and essentially replaced by $\frac{1}{R_{i-1}}$ (line 2080 in the code).

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2023-02-27 15:51:13 -0500

Seen: 99 times

Last updated: Mar 27 '23