Functions to calculate pH, alkalinity, total inorganic carbon and pCO2 in a closed, carbonate-buffered system at equilibrium (i.e. finite liquid and gas/headspace volume at equilibrium) with an optional additional weak acid/base buffer. This is for simplified aqueous geochemical systems commonly encountered in culturing applications. All default constants are based on freshwater and there is no implicit salinity correction included (stability constants can be set manually). For more complex systems, please use a full aquatic chemistry suite instead.
calculate_closed_system_pH( TIC, V_liquid, V_gas, solubility = calculate_gas_solubility("CO2", temperature), temperature = qty(25, "C"), pKa1 = 6.3, pKa2 = 10.3, pKw = 14, buffer = qty(0, "M"), buffer_pKa, alkalinity = qty(0, "M") ) calculate_closed_system_alkalinity( pH, TIC, V_liquid, V_gas, solubility = calculate_gas_solubility("CO2", temperature), temperature = qty(25, "C"), pKa1 = 6.3, pKa2 = 10.3, pKw = 14, buffer = qty(0, "M"), buffer_pKa ) calculate_closed_system_TIC( pH, pCO2, V_gas, V_liquid, temperature = qty(25, "C") ) calculate_closed_system_pCO2( pH, TIC, V_gas, V_liquid, solubility = calculate_gas_solubility("CO2", temperature), temperature = qty(25, "C"), pKa1 = 6.3, pKa2 = 10.3 )
TIC | total inorganic carbon in the system (an amount quantity) |
---|---|
V_liquid | volume of liquid (a volume quantity) |
V_gas | volume of the gas/headsapce (a volume quantity) |
solubility | the solubility of CO2, by default is determined based on the temperature of the system |
temperature | the temperature of the system, used to calculate the solubility constant |
pKa1 | the acid dissociation constant for H2CO3* |
pKa2 | the acid dissociation constant for bicarbonate (HCO3-) |
pKw | water dissociation constant |
buffer | [optional] total concentration of the pH buffer (a molarity quantity). Assumes that this is a protonated weak acid with the provided |
buffer_pKa | buffer acid dissociation constant, required if |
alkalinity | [optional] charge-weighed NET concentration of all conservative ions [units charge x a molarity quantity] (explicitly conservative alkalinity). Conservative ions are those that do NOT get affected by changes in pH in the pH range of interest (i.e. do not form any acids or bases or have pKas far outside the pH range of interest). E.g. mol/L Na that was added in the form of NaOH, NaHCO3 or as part of a Na-buffer salt; -1 x mol/L Cl that was added as HCl or -2 x mol/L SO4 that was added as H2SO4. Ions from salts that are comprised exclusively of conservative ions (e.g. NaCl, MgSO4) do not need to be included because they cancel out. By default the alkalinity of the system is 0 M. |
pH | the pH of the system |
pCO2 | the partial pressure of CO2 (a pressure quantity) |
calculate_closed_system_pH
: calculate the pH of a closed system. Returns pH.
calculate_closed_system_alkalinity
: calculates the alkalinity of a closed system that is carbonate buffered and has an optional additional weak acid/base buffer. Returns the alkalinity as a molarity quantity. positive = excess cations, negative = excess anions.
calculate_closed_system_TIC
: calculates total inorganic carbon (TIC) in a closed system at equilibrium. Returns TIC as an amount quantity.
calculate_closed_system_pCO2
: calculates the partial pressure of CO2 in the headspace (gas phase) of a closed system at equilibrium. Returns a pressure quantity.
Other carbonate chemistry:
open_system
,
speciation