Skip to content

LMTD Method

Overview

The Log-Mean Temperature Difference (LMTD) method is the classical approach for heat exchanger sizing and rating. It provides an analytical expression for the effective mean temperature difference driving heat transfer (Incropera et al., 2007).


Derivation

For a 2-stream heat exchanger with constant overall heat transfer coefficient \(U\) and constant specific heats, the rate equation is:

\[ Q = U \cdot A \cdot \Delta T_{\text{lm}} \]

where the log-mean temperature difference is:

\[ \Delta T_{\text{lm}} = \frac{\Delta T_1 - \Delta T_2}{\ln\!\left(\dfrac{\Delta T_1}{\Delta T_2}\right)} \]

Counterflow

\[ \Delta T_1 = T_{h,\text{in}} - T_{c,\text{out}} \qquad \Delta T_2 = T_{h,\text{out}} - T_{c,\text{in}} \]
LMTD in counterflow
Figure 1. Temperature profiles in counterflow — the driving force is more uniform along the exchanger length.

Co-current

\[ \Delta T_1 = T_{h,\text{in}} - T_{c,\text{in}} \qquad \Delta T_2 = T_{h,\text{out}} - T_{c,\text{out}} \]

Special Case: \(\Delta T_1 = \Delta T_2\)

When both temperature differences are equal (balanced counterflow with \(C_h = C_c\)), the LMTD formula yields 0/0. The correct limit is:

\[ \Delta T_{\text{lm}} = \Delta T_1 = \Delta T_2 \]

The implementation handles this case by returning the arithmetic mean when \(|\Delta T_1 - \Delta T_2| < 0.001\) K.


Zone-by-Zone LMTD

For multi-stream heat exchangers and cases involving phase change, the assumption of constant \(U\) and \(c_p\) is not valid over the full length of the exchanger. The MSHX implementation uses a zone-by-zone approach:

  1. Divide the exchanger into \(N\) zones of equal fractional heat duty
  2. In each zone \(j\), compute local \(\Delta T_1^{(j)}\) and \(\Delta T_2^{(j)}\) from composite curves
  3. Calculate the local LMTD for each zone
  4. Sum the zone UA contributions:
\[ UA_{\text{total}} = \sum_{j=1}^{N} \frac{\Delta Q_j}{\Delta T_{\text{lm}}^{(j)}} \]

The effective LMTD for the entire exchanger is then:

\[ \Delta T_{\text{lm,eff}} = \frac{Q_{\text{total}}}{UA_{\text{total}}} \]

Number of Zones

The implementation uses a minimum of 50 zones for the UA calculation (configurable via the NumberOfSegments parameter). More zones improve accuracy near pinch points where the temperature difference changes rapidly.


Limitations

The LMTD method has important limitations that motivate the use of more rigorous approaches:

Limitation Impact
Assumes constant \(U\) Inaccurate when \(U\) varies with temperature
Assumes constant \(c_p\) Fails near phase boundaries
Limited to 2 streams Cannot handle multi-stream configurations directly
Requires outlet temperatures Cannot solve directly for unknown outlets (iterative)

These limitations are addressed by the e-NTU method (for direct outlet prediction) and the segmented interval method (for rigorous multi-stream analysis).