SYSTEM.INITIALIZE: BLUEPRINT_UNFOLD
DWG TITLEPORTFOLIO BLUEPRINT
DRAWN BYDINESH KUMAR
SCALE1:1
REVISIONA.02
← Back to FEM Dashboard
CHAPTER 12Thermal Analysis

Steady-State 1D Heat Conduction Elements

Physical Intuition

To master the Finite Element Method (FEM) in thermal problems, we must transition our understanding from structural mechanics—where displacements and forces dominate—to thermodynamics, where the primary field variables are temperatures and heat flows. While structural elements resist deformation through material stiffness, thermal elements resist the flow of heat through thermal resistance.

In physical terms, heat transfer is the transmission of energy due to a temperature gradient. In a one-dimensional system, such as a long insulated rod, a cooling fin, or a composite wall, heat always flows from regions of higher temperature to regions of lower temperature. This fundamental behavior is governed by the Second Law of Thermodynamics. The rate at which this energy is transferred depends on the material's internal resistance to heat conduction (thermal conductivity, $k$), its interaction with surrounding fluids (convection, $h$), and internal heat generation (radiation or heat sources, $Q_g$).

Using FEM, we discretize a continuous thermal field $T(x)$ into discrete nodal temperatures. This allows us to solve complex, multi-layered thermal systems with arbitrary boundary conditions that are mathematically impossible to solve analytically.


Core Concepts

1. Heat Conduction and Fourier's Law

Conduction is the transfer of heat within a stationary solid, liquid, or gas medium via molecular collision, lattice vibration, and the migration of free electrons. In one dimension, the rate of heat flow per unit area is called the heat flux $q$ (measured in $\text{W/m}^2$). The mathematical formulation of conduction is governed by Fourier's Law of Heat Conduction:

$$q = -k \frac{dT}{dx}$$

where:

$k$ is the thermal conductivity of the material ($\text{W/(m} \cdot \text{K)}$ or $\text{W/(m} \cdot ^\circ\text{C)}$).
$\frac{dT}{dx}$ is the temperature gradient in the direction of heat flow.

The negative sign in Fourier's Law is a physical necessity: it indicates that heat flows in the direction of *decreasing* temperature. If the temperature decreases as $x$ increases, the gradient $\frac{dT}{dx}$ is negative, resulting in a positive heat flux $q$ in the positive $x$-direction. Thermal conductivity $k$ is a physical property that measures a material's capacity to transport heat. For example, metals like copper have high conductivities ($k \approx 400 \text{ W/(m} \cdot \text{K)}$), making them excellent conductors, whereas materials like fiberglass or concrete have low conductivities ($k < 1 \text{ W/(m} \cdot \text{K)}$), making them effective insulators.

2. Convection and Newton's Law of Cooling

Convection is the transfer of heat between a solid surface and a moving fluid (such as air, water, or oil) that are at different temperatures. This process is governed by Newton's Law of Cooling:

$$q_c = h (T_s - T_\infty)$$

where:

$h$ is the convection heat transfer coefficient ($\text{W/(m}^2 \cdot \text{K)}$).
$T_s$ is the temperature of the solid surface.
$T_\infty$ is the temperature of the surrounding fluid (ambient temperature).

The convection coefficient $h$ is not a material property; rather, it depends on the fluid's velocity, density, viscosity, thermal conductivity, and the geometry of the surface. Convection can be categorized as:

Natural (Free) Convection: Fluid motion is driven purely by buoyancy forces resulting from density differences caused by temperature variations (e.g., air rising from a hot radiator). Typical values: $h \approx 2 - 25 \text{ W/(m}^2 \cdot \text{K)}$.
Forced Convection: Fluid motion is driven by an external source such as a pump, fan, or wind. Typical values: $h \approx 25 - 250 \text{ W/(m}^2 \cdot \text{K)}$ for gases, and up to $10,000 \text{ W/(m}^2 \cdot \text{K)}$ for liquids.

3. Classification of Thermal Boundary Conditions

To obtain a unique temperature distribution, we must enforce boundary conditions at the limits of our domain. In 1D steady-state heat transfer, these conditions fall into three mathematical categories:

Essential (Dirichlet) Boundary Conditions: The temperature is explicitly specified at a boundary node.
$$T = T_0 \quad \text{at } x = x_0$$

This is analogous to a fixed support in structural mechanics.

Natural (Neumann) Boundary Conditions: The heat flux is prescribed at a boundary surface.
$$-k \frac{dT}{dx} = q_0 \quad \text{at } x = x_0$$

If $q_0 = 0$, the boundary is insulated or adiabatic, meaning no heat enters or leaves the system through that surface. This is the thermal equivalent of a free boundary.

Mixed (Robin) Boundary Conditions: The heat conducted to a boundary from within the solid is balanced by the heat transferred to a surrounding fluid via convection.
$$-k \frac{dT}{dx} = h (T - T_\infty) \quad \text{at boundary}$$

Unlike the Neumann condition, the heat flux here is not constant; it depends directly on the unknown boundary surface temperature $T$. In FEM, this temperature dependence introduces a convection term into the stiffness matrix.

4. The Thermal-Electrical Analogy

There is a direct mathematical analogy between steady-state heat transfer and direct-current (DC) electricity. This analogy is highly useful for verifying finite element models and gaining physical insight:

Thermal QuantityElectrical Quantity
------
Temperature difference, $\Delta T$ ($\text{K}$)Voltage drop / Potential difference, $\Delta V$ ($\text{V}$)
Heat flow rate, $Q$ ($\text{W}$)Electric current, $I$ ($\text{A}$)
Thermal resistance, $R_{th}$ ($\text{K/W}$)Electrical resistance, $R_e$ ($\Omega$)
Thermal conductivity, $k$ ($\text{W/(m} \cdot \text{K)}$)Electrical conductivity, $\sigma$ ($\text{S/m}$)
Governing law: $Q = \frac{\Delta T}{R_{th}}$Governing law: $I = \frac{\Delta V}{R_e}$

Using this analogy, we define thermal resistance $R_{th}$ for two main cases:

Conduction Resistance (for a flat wall of thickness $L$, area $A$, and conductivity $k$):
$$R_{cond} = \frac{L}{k A}$$
Convection Resistance (for a surface of area $A$ exposed to convection coefficient $h$):
$$R_{conv} = \frac{1}{h A}$$

For a multi-layered composite wall in series, the equivalent thermal resistance is the sum of the individual resistances:

$$R_{eq} = R_{cond,1} + R_{cond,2} + \dots + R_{conv,o}$$

This simple analogy helps engineers verify global heat flows before executing complex FEA models.

Extended chapter reference

Heat-capacity matrices, conduction, convection, sources, and transient stepping

Thermal FEM replaces displacement with temperature and mechanical stiffness with conductivity. Transient analysis adds a heat-capacity matrix and requires time integration, stability control, and energy-balance verification.

Derive conductivity and capacity matrices for a 1D thermal element.
Apply prescribed temperature, heat flux, convection, and heat generation.
Compare lumped and consistent thermal capacity.
Select time steps using accuracy and stability requirements.

Visual map

From formulation to verified result

Steady-State 1D Heat Conduction Elements finite element workflowA six-stage engineering workflow from model definition through verification.Steady-State 1D Heat Conduction ElementsModel-to-evidence sequence1
Thermal properties
2
Conductivity matrix
3
Capacity matrix
4
Boundary heat terms
5
Time integration
6
Energy balance
Each stage produces evidence for the next. A reliable result preserves traceability from the physical idealization to the final engineering check.

Equation sheet

Governing relationships

Semi-discrete heat equation
$$[C]\{\dot T\}+[K_t]\{T\}=\{Q\}$$

Balances stored, conducted, and supplied heat.

Conduction matrix
$$[K_t]^e=\int_V[B]^Tk[B],dV$$

Thermal analogue of structural stiffness.

Capacity matrix
$$[C]^e=\int_V[N]^T\rho c_p[N],dV$$

Stores thermal inertia across the element.

Engineering comparison

Selection and interpretation table

Time schemeStabilityNumerical behaviorUse
Forward EulerConditionalLow cost, can divergeSmall explicit thermal steps
Backward EulerUnconditional linear stabilityNumerically diffusiveRobust long transients
Crank-NicolsonUnconditional linear stabilitySecond-order, may oscillateSmooth accurate transients
Steady stateNo time termNo thermal inertiaFinal equilibrium temperature

Verification and application

Checks before accepting the result

  • Total heat input equals storage plus loss
  • Biot number supports idealization
  • Time-step refinement is performed
  • Temperature-dependent properties are updated

Industry application

During brake-disc heating, a coarse time step can reproduce the final temperature but miss the peak surface gradient that drives thermal stress. Both temporal and spatial convergence are required.