Introduction & Context

In pressure-driven membrane filtration, especially reverse osmosis (RO), the overall hydraulic resistance of the membrane determines the attainable permeate flux. Asymmetric thin-film composite (TFC) membranes consist of a very thin dense polyamide skin layer supported by a porous polysulfone substrate. Because the skin layer provides the dominant resistance while the support contributes only a minor series resistance, TFC membranes achieve markedly higher fluxes than symmetric membranes of comparable material. This analysis quantifies the individual resistances of the skin and support layers and demonstrates how the asymmetric architecture translates into a flux advantage.

Methodology & Formulas

The calculation follows the logical sequence implemented in the reference Python script, expressed entirely with algebraic symbols and LaTeX notation.

  1. Convert operating conditions to SI units (pressure, permeability, dimensions). Symbolically:
    \[ \Delta P_{\text{Pa}} = \Delta P_{\text{bar}} \cdot 10^{5} \]
    \[ A_{\text{SI}} = A_{\text{LMH/bar}} \cdot \frac{10^{-3}}{3600} \cdot \frac{1}{10^{5}} \]
  2. Support layer resistance (capillary model):
    \[ R_{\text{support}} = \frac{8 \cdot \tau \cdot \delta_{\text{support}}}{\varepsilon \cdot r_{\text{pore}}^{2}} \]
  3. Total membrane resistance from pure-water permeability:
    The permeability definition is \[ A = \frac{J_{v}}{\Delta P} = \frac{1}{\mu \cdot R_{\text{total}}} \] so \[ R_{\text{total}} = \frac{1}{\mu \cdot A_{\text{SI}}} \]
  4. Skin layer resistance (by subtraction, since resistances are in series):
    \[ R_{\text{skin}} = R_{\text{total}} - R_{\text{support}} \] In practice, since the skin dominates, \( R_{\text{skin}} \approx R_{\text{total}} \), but this gives the precise value.
  5. Permeate flux for the asymmetric membrane (Membrane A):
    Two equivalent forms are available:
    Directly from permeability: \[ J_{v}^{A} = A_{\text{LMH/bar}} \cdot \Delta P_{\text{bar}} \]
    Using total resistance: \[ J_{v}^{A} = \frac{\Delta P_{\text{Pa}}}{\mu \cdot R_{\text{total}}} \]
  6. Symmetric-membrane reference (Membrane B):
    The resistance of a uniform membrane scales with its thickness. With a thickness ratio \[ \Lambda = \frac{\delta_{\text{support}}}{\delta_{\text{skin}}} \] the symmetric-membrane resistance is \[ R_{B} = \Lambda \cdot R_{\text{skin}} \] and the corresponding flux is \[ J_{v}^{B} = \frac{\Delta P_{\text{Pa}}}{\mu \cdot R_{B}} = \frac{J_{v}^{A}}{\Lambda} \quad \text{(approximately, since } R_{\text{skin}} \approx R_{\text{total}} \text{)} \]

Regime and Validity Checks

Parameter Typical Range (SI) Check Condition
\(\delta_{\text{skin}}\) (skin thickness) 1.0 × 10⁻⁸ – 2.0 × 10⁻⁷ m \(1.0\!\times\!10^{-8} \le \delta_{\text{skin}} \le 2.0\!\times\!10^{-7}\)
\(r_{\text{pore}}\) (support pore radius) 1.0 × 10⁻⁸ – 5.0 × 10⁻⁸ m \(1.0\!\times\!10^{-8} \le r_{\text{pore}} \le 5.0\!\times\!10^{-8}\)
\(A\) (pure-water permeability) 0.5 – 5.0 LMH/bar \(0.5 \le A_{\text{LMH/bar}} \le 5.0\)
\(\varepsilon\) (porosity) > 0 \(\varepsilon > 0\)
\(\tau\) (tortuosity) > 0 \(\tau > 0\)

Interpretation of Results

The algebraic expressions reveal that for a TFC membrane the skin resistance \(R_{\text{skin}}\) is typically orders of magnitude larger than the support resistance \(R_{\text{support}}\). Consequently, the total resistance is governed by the thin selective layer, and any reduction in \(\delta_{\text{skin}}\) or increase in \(A\) yields a proportional increase in flux. In contrast, a symmetric membrane of the same material but with thickness \(\delta_{\text{support}}\) incurs a resistance multiplied by the thickness ratio \(\Lambda\), reducing flux by the same factor. This quantitative framework explains the high-flux advantage of asymmetric membrane structures in RO applications.