Extended Surface Heat Transfer (Fins) — Comprehensive Analysis
Extended Surface Heat Transfer (Fins): Theoretical Foundations
Fin Array Performance Evaluation
Professor, I understand the efficiency of a single fin, but how do you evaluate the overall performance of a fin array?
It is evaluated by the Overall Surface Efficiency $\eta_o$. It represents the effective heat dissipation capability combining the fin surfaces and the exposed base surface.
Here, $N$ is the number of fins, $A_f$ is the area of one fin, $A_t = N A_f + A_b$ is the total surface area, and $A_b$ is the exposed base area.
If $\eta_f = 1$, then $\eta_o = 1$, right?
Correct. The worse the fin efficiency, the lower $\eta_o$ becomes. For practical heat sinks, $\eta_o$ is typically around 0.7 to 0.9.
Overall Thermal Resistance
The total thermal resistance of a heat sink is:
$R_{\text{spread}}$ is the spreading resistance (occurs when the heat source is smaller than the base), and $R_{\text{base}}$ is the conduction resistance through the base thickness.
What is spreading resistance?
When a CPU die (e.g., 30mm square) is mounted at the center of a heat sink base (e.g., 60mm square), this is the resistance encountered as heat spreads laterally within the base. It can be estimated using the Song-Lee-Au formula.
$a$ is the equivalent radius of the heat source, and $\Psi$ is a function of base thickness and the Biot number.
Fin Effectiveness
Separate from fin efficiency, fin effectiveness $\varepsilon_f$ is also an important metric.
It represents the heat dissipation multiplier compared to the case without fins (heat dissipation only from the fin root area $A_c$). It is generally considered that there is no benefit to adding fins unless $\varepsilon_f > 2$.
So fin efficiency and effectiveness are different things. It's easy to confuse them.
Efficiency is "what percentage of the fin area is effective," while effectiveness is "how many times the heat dissipation increased by adding the fin." One can be high while the other is low.
Classification System for Various Fin Types
Extended heat transfer surfaces are classified into four major shapes: pin, rectangular, triangular, and annular. The NTU-ε method compiled by Kays and London in "Compact Heat Exchangers" in the 1980s became the foundation for design and is still standardly referenced in aerospace and chemical plant fields.
Computational Methods for Extended Surface Heat Transfer (Fins)
Efficiency of Various Fin Shapes
Does the cross-sectional shape of a fin change its efficiency?
It changes significantly. Let's compare the efficiency of typical fin shapes.
| Fin Shape | Efficiency Formula | Material Usage | Manufacturability |
|---|---|---|---|
| Rectangular | $\eta_f = \tanh(mL_c)/(mL_c)$ | Baseline | Easy |
| Triangular | $\eta_f = I_1(2mL)/(mL \cdot I_0(2mL))$ | −50% | Somewhat Difficult |
| Parabolic | Bessel Functions | −67% | Difficult |
| Annular (Disk) | Modified Bessel Functions | Case Dependent | Easy |
So triangular fins use half the material.
Triangular fins, which are thick at the root and thin at the tip, have good efficiency due to material distribution matching the temperature profile. The tip area of a rectangular fin is at a lower temperature and contributes little to heat dissipation, making it wasteful.
Analysis of Annular Fins
Annular fins (annular fins) attached to pipes or cylinder outer surfaces are solved using Bessel functions.
$r_1$ is the inner radius (root), $r_2$ is the outer radius (tip). $I_0, I_1, K_0, K_1$ are modified Bessel functions.
Bessel functions are tough for manual calculation.
Using efficiency charts (Fig. 3.20 in the Incropera textbook) is practical. You read from the graph using two parameters: $r_2/r_1$ and $mL_c$. In Python, you can calculate directly using scipy.special.iv/kv.
Comparison with CHT Analysis
Analytical solutions are based on the assumption that $h$ is uniform. In actual fin arrays, $h$ varies significantly due to flow development and vortex generation. Conjugate Heat Transfer (CHT) analysis with CFD, which automatically calculates local $h$, often results in 10–20% lower heat dissipation than analytical solutions.
So analytical solutions are optimistic estimates.
That's why a two-step approach is practical: initial design using analytical solutions, and final verification using CHT analysis.
Analytical Methods for Annular Fins
The efficiency of an annular fin is given by a formula containing Bessel functions I₀, I₁, K₀, K₁. When the outer/inner radius ratio r₂/r₁ is 2.0, efficiency decreases by about 5–8% compared to a rectangular fin. It can be calculated with a few lines of code using MATLAB's besselj function.
Extended Surface Heat Transfer (Fins) in Practice
Heat Sink Selection Flow
In practice, what steps do you follow to select a heat sink?
The standard flow is as follows.
1. Determine Heat Generation: Confirm TDP (Thermal Design Power)
2. Confirm Allowable Temperature: Junction temperature upper limit (e.g., $T_j \leq 105$°C)
3. Calculate Allowable Thermal Resistance: $R_{\text{hs}} \leq (T_j - T_a)/Q - R_{jc} - R_{\text{TIM}}$
4. Select Heat Sink Candidates: Choose from catalog those with $R_{\text{hs}}$ below the calculated value
5. CFD Verification: Verify reflecting the implementation environment (airflow speed, adjacent components)
$R_{jc}$ is the package thermal resistance, right?
Correct. $R_{jc}$ (junction-to-case) is listed in the IC manufacturer's datasheet. $R_{\text{TIM}}$ (Thermal Interface Material) is typically around 0.1 to 0.5 K/W.
Comparison with Measured Data
Wind tunnel testing is the most reliable method for verifying heat sink performance.
| Measurement Item | Measurement Method | Accuracy |
|---|---|---|
| Thermal Resistance | Heater + Thermocouple | $\pm$5% |
| Temperature Distribution | Thermography | $\pm$2℃ |
| Airflow Distribution | Hot-wire Anemometer | $\pm$3% |
| Pressure Loss | Differential Pressure Gauge | $\pm$1 Pa |
Related Topics
Experience the theory firsthand with the interactive simulator for this field
All Simulators