Wiki

Clone wiki

pflotran / Depreciated / Documentation / QuickGuide / Chemistry / Isotherm_Reactions

ISOTHERM_REACTIONS Card

Specifies parameters for a sorption reaction defined by an isotherm (e.g. linear, Langmuir, Freundlich)

Required Cards

ISOTHERM_REACTIONS : Opens the block

<Species_Name> : Name of primary species that sorbs

DISTRIBUTION_COEFFICIENT <float> : The value of KD [kgwater / m^3^ bulk]. For KD values provided in e.g. mL / g, convert to kgw / m^3^ bulk by multiplying by \rhow and \rhob with proper units conversion.

Optional Cards

TYPE <string> : Type of isotherm

  • LINEAR : Linear isotherm (KD) -- Csorb = KD Caq
  • LANGMUIR : Langmuir isotherm -- Csorb = K Caq b / ( 1 + K Caq )
  • FREUNDLICH : Freundlich isotherm -- Csorb = KD Caq^1/n^

LANGMUIR_B <float> : b coefficient for Langmuir isotherm. Automatically sets the type to LANGMUIR.

FREUNDLICH_N <float> : n exponent in Freundlich isotherm. Automatically sets the type to FREUNDLICH

Examples

ISOTHERM_REACTIONS
  Tracer
    DISTRIBUTION_COEFFICIENT 0.25d3  
  /
  Tracer2
    DISTRIBUTION_COEFFICIENT 0.5d3
    FREUNDLICH_N 1.67  ! 1/n = 0.6
  /
  Tracer3
    DISTRIBUTION_COEFFICIENT 0.5d3
    LANGMUIR_B 0.6 
  /
END

Updated