Introduction & Context

The viscosity of polymeric and glass‑forming materials varies strongly with temperature. Predicting this variation is essential for process engineers who must size pumps, design extrusion lines, and control cooling cycles. The Williams‑Landel‑Ferry (WLF) equation provides a widely accepted empirical relationship that links the logarithm of the viscosity ratio to the temperature distance from the glass‑transition temperature. It is routinely used in polymer processing, coating operations, and any application where a material transitions from a glassy to a rubbery state.

Methodology & Formulas

The calculation follows the logical steps implemented in the reference Python script, expressed here in purely algebraic form.

  1. Convert temperatures from Celsius to Kelvin.
    T_K = T_C + ΔT_K
    Tg_K = Tg_C + ΔT_K
    ΔT_K denotes the constant offset required for the Celsius‑to‑Kelvin conversion.
  2. Determine the temperature difference relative to the glass‑transition point.
    ΔT = T_K - Tg_K
    This difference will be negative when the target temperature is below the glass‑transition temperature.
  3. Apply the base‑10 logarithmic form of the WLF equation.
    rhs = - (C1 · ΔT) / (C2 + ΔT)
    C1 and C2 are the WLF constants; C2 is expressed in Kelvin (its numerical value matches the Celsius representation).
  4. Compute the viscosity ratio.
    ratio = 10^{rhs}
    This yields the factor by which the reference viscosity changes at the target temperature.
  5. Obtain the absolute viscosity at the target temperature.
    μ = μ_g · ratio
    μ_g is the reference viscosity measured at the glass‑transition temperature.

The resulting expression for the target viscosity can be written compactly as:

μ = μ_g · 10^{ - (C1·(T_C+ΔT_K - Tg_C-ΔT_K)) / (C2 + (T_C+ΔT_K - Tg_C-ΔT_K)) }
  

This formula enables engineers to predict how a material’s flow resistance will evolve with temperature, supporting design decisions and process optimization without the need for extensive experimental testing.