Material & Parameters
Initial Condition
Boundary Conditions
Explicit FD: $T_i^{n+1}= T_i^n + Fo(T_{i+1}^n - 2T_i^n + T_{i-1}^n)$
Stability: $Fo = \alpha\Delta t/\Delta x^2 \leq 0.5$
Finite difference simulation of 1D transient heat conduction. Change initial and boundary conditions to experience temperature profile evolution in real time.
The core physics is governed by the 1D Heat Diffusion Equation (Fourier's Law). It states that the rate of temperature change at any point is proportional to the spatial curvature (second derivative) of the temperature field.
$$ \frac{\partial T}{\partial t}= \alpha \frac{\partial^2 T}{\partial x^2}$$Here, $T(x,t)$ is temperature, $t$ is time, $x$ is position, and $\alpha$ is the thermal diffusivity ($\alpha = \lambda / (\rho c_p)$). This equation is solved numerically in the simulator using the Finite Difference Method.
The numerical solution's stability is controlled by the Fourier Number, a dimensionless quantity. The simulator must keep this below a critical value for accurate, stable results.
$$ Fo = \frac{\alpha \Delta t}{\Delta x^2} \leq 0.5 $$$Fo$ is the Fourier number, $\Delta t$ is the computational time step, and $\Delta x$ is the spatial grid size. This condition ensures the explicit numerical scheme doesn't produce unrealistic, oscillating results. The simulator automatically chooses a $\Delta t$ that satisfies this.
Building Insulation Design: Engineers use this exact 1D analysis to model heat transfer through walls. By simulating transient conditions (like a hot day turning into a cool night), they can select the right insulation material (low $\alpha$) and thickness to maintain comfortable indoor temperatures and reduce energy costs.
Electronic Cooling: When a computer chip powers on, it generates heat in a pulse. Transient thermal analysis predicts how quickly that heat will diffuse through the chip package and into the heat sink. This prevents overheating and ensures reliable performance during sudden computational loads.
Food Processing & Safety: In canning or pasteurization, it's critical to ensure the coldest point inside the food reaches a sufficient temperature for a specific time to kill bacteria. 1D transient models help determine the required processing time for different food geometries and materials.
Geothermal Energy Systems: The design of ground-source heat pumps relies on understanding how heat extracted from (or injected into) the ground diffuses through the soil over days and seasons. Transient models inform the spacing and depth of underground piping loops for efficient, sustainable heating and cooling.
First, do not confuse "thermal diffusivity" with "thermal conductivity". The "thermal diffusivity α" you directly adjust in the simulator determines the "speed" of temperature change. On the other hand, the "thermal conductivity λ" that appears on the backside in convection conditions is the very "ease of heat flow" itself. For example, glass wool insulation has a very small thermal conductivity (it does not conduct heat well), which consequently results in a small thermal diffusivity and a slow temperature change. If you don't understand this difference, you will be confused when looking at material data sheets to set parameters.
Next, the value of the heat transfer coefficient h in "convection" conditions is critical. It's fine to play with the default values, but to use this for practical work, investigating appropriate values is essential. For instance, the order of magnitude is completely different: for natural convection (air) it's about 5–25 W/(m²·K), for forced convection (air by fan) 25–250 W/(m²·K), and for water cooling 500–10000 W/(m²·K). If you uniformly set this to "let's say 100," you will get results far removed from reality.
Finally, always be mindful of the limitations of the 1D model. This tool is optimal for analyzing the "thickness direction" of rods or thick plates, but in reality, heat spreads three-dimensionally. For example, heat generated by a chip on a smartphone substrate also spreads within the plane of the substrate (2D). Keep in mind that the 1D model is a "first approximation" for understanding the "primary heat flow path" or the "representative behavior in a cross-section."
Steel rod (alpha = 1.2e-5 m²/s, length 0.1 m) with TL = 100°C fixed, TR = 20°C fixed, initial uniform 20°C. Using dx = 0.01 m and dt = 5 s gives Fo = 0.06. After 300 s, midpoint temperature rises to approximately 58°C. Increasing hConv to 50 W/m²K at left boundary (ambient 100°C) produces slower interior heating due to convective resistance.