Do it like in MATLAB¶
Syntax¶
Up until v1.5.0, the simplest and safest way to use PyCO2SYS was to follow the approach of previous versions of CO2SYS and calculate every possible variable of interest at once using a MATLAB-style syntax. A new, more powerful and more Pythonic interface has now been introduced, which you can read about here. New developments to PyCO2SYS will focus on the other interface; this one is no longer being actively developed.
Read further on this page if you want to stick with the MATLAB-style syntax. This is accessed using the top-level CO2SYS
function:
# Import the function
from PyCO2SYS import CO2SYS
# Run CO2SYS
CO2dict = CO2SYS(PAR1, PAR2, PAR1TYPE, PAR2TYPE, SAL, TEMPIN, TEMPOUT,
PRESIN, PRESOUT, SI, PO4, pHSCALEIN, K1K2CONSTANTS, KSO4CONSTANTS,
NH3=0.0, H2S=0.0, KFCONSTANT=1, opt_buffers_mode=1,
totals=None, equilibria_in=None, equilibria_out=None, WhichR=1)
# Get (e.g.) aragonite saturation state, output conditions
OmegaARout = CO2dict["OmegaARout"]
Each input can either be a single scalar value or a NumPy array containing a series of values, with the excepton of the optional totals
, equilibria_in
and equilibria_out
inputs, which should be dicts of scalars or arrays (if provided, see Internal overrides). The output is a dict containing a series of NumPy arrays with all the calculated variables. These are described in detail in the following sections.
Using the Pythonic API¶
Alternatively, a more Pythonic API can be used to interface with CO2SYS
. This returns a Pandas DataFrame in place of the dict, with the same names for the various outputs. The function uses keyword arguments, meaning that only the specified marine carbonate system parameters have to be entered.
from PyCO2SYS.api import CO2SYS_wrap as co2sys
# Call with defaults
df1 = co2sys(dic=2103, alk=2360)
# The above is equivalent to:
df1 = co2sys(
dic=2103, alk=2360, pco2=None, fco2=None, pH=None,
carb=None, bicarb=None, co2aq=None,
temp_in=25, temp_out=25, pres_in=0, pres_out=0,
sal=35, si=0, po4=0, nh3=0, h2s=0,
K1K2_constants=4, KSO4_constants=1, KF_constant=1, pHscale_in=1,
opt_buffers_mode=1, verbose=True)
CO2SYS_wrap
: incomplete functionality
In the main PyCO2SYS.CO2SYS
function, each input row of PAR1
and PAR2
can contain a different combination of parameter types. This is not currently possible with PyCO2SYS.api.CO2SYS_wrap
: each call to the function may only have a single input pair combination, with the others all set to None
.
CO2SYS_wrap
also does not support the totals
, equilibria_in
and equilibria_out
optional inputs to CO2SYS
.
This wrapper function will also accept NumPy arrays, pandas.Series or xarray.DataArrays as inputs. Scalar or default values will be broadcast to match any vector inputs.
Inputs¶
Most of the inputs should be familiar to previous users of CO2SYS for MATLAB, and they work exactly the same here. Each input can either be a single scalar value, or a NumPy array containing a series of values. If arrays are used then they must all be the same size as each other, but a combination of same-size arrays and single scalar values is allowed.
PyCO2SYS.CO2SYS
inputs
Carbonate system parameters¶
PAR1
andPAR2
: values of two different carbonate system parameters.PAR1TYPE
andPAR2TYPE
: which types of parameterPAR1
andPAR2
are.
These can be any pair of:
- Total alkalinity (type
1
) in μmol·kg−1. - Dissolved inorganic carbon (type
2
) in μmol·kg−1. - pH (type
3
) on the Total, Seawater, Free or NBS scale1. Which scale is given by the inputpHSCALEIN
. - Partial pressure (type
4
) or fugacity (type5
) of CO2 in μatm or aqueous CO2 (type8
) in μmol·kg−1. - Carbonate ion (type
6
) in μmol·kg−1. - Bicarbonate ion (type
7
) in μmol·kg−1.
For all inputs in μmol·kg−1, the "kg" refers to the total solution, not H2O. These are therefore most accurately termed molinity values (as opposed to concentration or molality).
Hydrographic conditions¶
SAL
: practical salinity (dimensionless).TEMPIN
: temperature at whichPAR1
andPAR2
inputs are provided in °C.TEMPOUT
: temperature at which output results will be calculated in °C.PRESIN
: pressure at whichPAR1
andPAR2
inputs are provided in dbar.PRESOUT
: pressure at which output results will be calculated in dbar.
For example, if a sample was collected at 1000 dbar pressure (~1 km depth) at an in situ water temperature of 2.5 °C and subsequently measured in a lab at 25 °C, then the correct values would be TEMPIN = 25
, TEMPOUT = 2.5
, PRESIN = 0
, and PRESIN = 1000
.
Nutrients and other solutes¶
Required:
SI
: total silicate in μmol·kg−1.PO4
: total phosphate in μmol·kg−1.
Optional (these default to zero if not specified):
NH3
: total ammonia in μmol·kg−1.H2S
: total hydrogen sulfide in μmol·kg−1.
Again, the "kg" in μmol·kg−1 refers to the total solution, not H2O. These are therefore most accurately termed molinity values (as opposed to concentration or molality).
Settings¶
Required:
-
pHSCALEIN
: which pH scale was used for any pH entries inPAR1
orPAR2
, as defined by ZW01:1
: Total, i.e. \mathrm{pH} = -\log_{10} ([\mathrm{H}^+] + [\mathrm{HSO}_4^-]).2
: Seawater, i.e. \mathrm{pH} = -\log_{10} ([\mathrm{H}^+] + [\mathrm{HSO}_4^-] + [\mathrm{HF}]).3
: Free, i.e. \mathrm{pH} = -\log_{10} [\mathrm{H}^+].4
: NBS, i.e. relative to NBS/NIST reference standards.
-
K1K2CONSTANTS
: which set of equilibrium constants to use to model carbonic acid dissociation:1
: RRV93 (0 < T < 45 °C, 5 < S < 45, Total scale, artificial seawater).2
: GP89 (−1 < T < 40 °C, 10 < S < 50, Seawater scale, artificial seawater).3
: H73a and H73b refit by DM87 (2 < T < 35 °C, 20 < S < 40, Seawater scale, artificial seawater).4
: MCHP73 refit by DM87 (2 < T < 35 °C, 20 < S < 40, Seawater scale, artificial seawater).5
: H73a, H73b and MCHP73 refit by DM87 (2 < T < 35 °C, 20 < S < 40, Seawater scale, artificial seawater).6
: MCHP73 aka "GEOSECS" (2 < T < 35 °C, 19 < S < 43, NBS scale, real seawater).7
: MCHP73 without certain species aka "Peng" (2 < T < 35 °C, 19 < S < 43, NBS scale, real seawater).8
: M79 (0 < T < 50 °C, S = 0, freshwater only).9
: CW98 (2 < T < 35 °C, 0 < S < 49, NBS scale, real and artificial seawater).10
: LDK00 (2 < T < 35 °C, 19 < S < 43, Total scale, real seawater).11
: MM02 (0 < T < 45 °C, 5 < S < 42, Seawater scale, real seawater).12
: MPL02 (−1.6 < T < 35 °C, 34 < S < 37, Seawater scale, field measurements).13
: MGH06 (0 < T < 50 °C, 1 < S < 50, Seawater scale, real seawater).14
: M10 (0 < T < 50 °C, 1 < S < 50, Seawater scale, real seawater).15
: WMW14 (0 < T < 50 °C, 1 < S < 50, Seawater scale, real seawater).16
: SLH20 (−1.67 < T < 31.80 °C, 30.73 < S < 37.57, Total scale, field measurements).17
: SB21 (15 < T < 35 °C, 19.6 < S < 41, Total scale).
The brackets above show the valid temperature (T) and salinity (S) ranges, original pH scale, and type of material measured to derive each set of constants.
-
KSO4CONSTANTS
: (1) which equilibrium constant to use to model bisulfate ion dissociation and (2) which boron:salinity relationship to use to estimate total borate:
The somewhat inelegant approach for combining these into a single option is inherited from CO2SYS for MATLAB and retained here for consistency.
Optional:
-
KFCONSTANT
: which equilibrium constant to use for hydrogen fluoride dissociation: -
opt_buffers_mode
: how to calculate the various buffer factors (or not).1
: using automatic differentiation, which accounts for the effects of all equilibrating solutes (default).2
: using explicit equations reported in the literature, which only account for carbonate, borate and water alkalinity.0
: not at all.
For opt_buffers_mode
, 1
is the recommended and most accurate calculation, and it is a little faster to compute than 2
. If 0
is selected, then the corresponding outputs have the value nan
.
WhichR
: what value to use for the ideal gas constant R:1
: DOEv2 (default, consistent with all previous CO2SYS software).2
: DOEv3.3
: 2018 CODATA.
Internal overrides¶
You can optionally use the totals
, equilibria_in
and equilibria_out
inputs to override some or all parameter values that PyCO2SYS normally estimates internally from salinity, temperature and pressure. If used, these inputs should each be a dict containing one or more of the following items.
totals
: any of the output variables listed below in Totals estimated from salinity in μmol·kg−1.equilibria_in
: any of the output variables listed below in Equilibrium constants, the fugacity factor and/or the activitiy coefficient of H+, all at input conditions and with the wordinput
removed from the end of each dict key.equilibria_out
: likeequilibria_in
, but for the output conditions.
Like all other PyCO2SYS.CO2SYS
input parameters, each field in these dicts can be either a single value or a NumPy array the same size as all other input arrays.
Outputs¶
The results of CO2SYS
calculations are stored in a dict of NumPy arrays. The keys to the dict are the same as the entries in the output HEADERS
in CO2SYS for MATLAB and are listed in the section below.
PyCO2SYS.CO2SYS
outputs
The only output is a dict of NumPy arrays. Its keys are as follows:
Dissolved inorganic carbon¶
"TCO2"
: dissolved inorganic carbon in μmol·kg−1."CO3in"
/"CO3out"
: carbonate ion at input/output conditions in μmol·kg−1."HCO3in"
/"HCO3out"
: bicarbonate ion at input/output conditions in μmol·kg−1."CO2in"
/"CO2out"
: aqueous CO2 at input/output conditions in μmol·kg−1."pCO2in"
/"pCO2out"
: seawater partial pressure of CO2 at input/output conditions in μatm."fCO2in"
/"fCO2out"
: seawater fugacity of CO2 at input/output conditions in μatm."xCO2in"
/"xCO2out"
: seawater mole fraction of CO2 at input/output conditions in ppm."FugFacinput"
/"FugFacoutput"
: fugacity factor at input/output conditions for converting between CO2 partial pressure and fugacity.
Alkalinity and its components¶
"TAlk"
: total alkalinity in μmol·kg−1."BAlkin"
/"BAlkout"
: borate alkalinity at input/output conditions in μmol·kg−1."PAlkin"
/"PAlkout"
: phosphate alkalinity at input/output conditions in μmol·kg−1."SiAlkin"
/"SiAlkout"
: silicate alkalinity at input/output conditions in μmol·kg−1."NH3Alkin"
/"NH3Alkout"
: ammonia alkalinity at input/output conditions in μmol·kg−1."H2SAlkin"
/"H2SAlkout"
: hydrogen sulfide alkalinity at input/output conditions in μmol·kg−1."PengCorrection"
: the "Peng correction" for alkalinity (applies only forK1K2CONSTANTS = 7
) in μmol·kg−1.
pH and water¶
"pHin"
/"pHout"
: pH at input/output conditions on the scale specified by inputpHSCALEIN
."pHinTOTAL"
/"pHoutTOTAL"
: pH at input/output conditions on the Total scale."pHinSWS"
/"pHoutSWS"
: pH at input/output conditions on the Seawater scale."pHinFREE"
/"pHoutFREE"
: pH at input/output conditions on the Free scale."pHinNBS"
/"pHoutNBS"
: pH at input/output conditions on the NBS scale."HFreein"
/"HFreeout"
: "free" proton at input/output conditions in μmol·kg−1."OHin"
/"OHout"
: hydroxide ion at input/output conditions in μmol·kg−1."fHinput"
/"fHoutput"
: activity coefficient of H+ at input/output conditions for pH-scale conversions to and from the NBS scale.
Carbonate mineral saturation¶
"OmegaCAin"
/"OmegaCAout"
: saturation state of calcite at input/output conditions."OmegaARin"
/"OmegaARout"
: saturation state of aragonite at input/output conditions.
Buffer factors¶
Whether these are evaluated using automatic differentiation, with explicit equations, or not at all is controlled by the input opt_buffers_mode
.
"RFin"
/"RFout"
: Revelle factor at input/output conditions2."psi_in"
/"psi_out"
: ψ of FCG94 at input/output conditions."gammaTCin"
/"gammaTCout"
: buffer factor γDIC of ESM10 at input/output conditions3."betaTCin"
/"betaTCout"
: buffer factor βDIC of ESM10 at input/output conditions."omegaTCin"
/"omegaTCout"
: buffer factor ωDIC of ESM10 at input/output conditions."gammaTAin"
/"gammaTAout"
: buffer factor γTA of ESM10 at input/output conditions."betaTAin"
/"betaTAout"
: buffer factor βTA of ESM10 at input/output conditions."omegaTAin"
/"omegaTAout"
: buffer factor ωTA of ESM10 at input/output conditions."isoQin"
/"isoQout"
: isocapnic quotient of HDW18 at input/output conditions."isoQapprox_in"
/"isoQapprox_out"
: approximate isocapnic quotient of HDW18 at input/output conditions.
Biological properties¶
Seawater properties related to the marine carbonate system that have a primarily biological application.
"SIRin"
/"SIRout"
: substrate:inhibitor ratio of B15 at input/output conditions in mol(HCO3−)·μmol(H+)−1.
Totals estimated from salinity¶
"TB"
: total borate in μmol·kg−1."TF"
: total fluoride μmol·kg−1."TSO4"
: total sulfate in μmol·kg−1 (or"TS"
, deprecated)."TCa"
: total calcium in μmol·kg−1.
Equilibrium constants¶
All equilibrium constants are returned on the pH scale of input pHSCALEIN
except for "KFinput"
/"KFoutput"
and "KSO4input"
/"KSO4output"
, which are always on the Free scale.
"K0input"
/"K0output"
: Henry's constant for CO2 at input/output conditions."K1input"
/"K1output"
: first carbonic acid dissociation constant at input/output conditions."K2input"
/"K2output"
: second carbonic acid dissociation constant at input/output conditions."pK1input"
/"pK1output"
: -log10(K1input
)/-log10(K1output
)."pK2input"
/"pK2output"
: -log10(K2input
)/-log10(K2output
)."KWinput"
/"KWoutput"
: water dissociation constant at input/output conditions."KBinput"
/"KBoutput"
: boric acid dissociation constant at input/output conditions."KFinput"
/"KFoutput"
: hydrogen fluoride dissociation constant at input/output conditions."KSO4input"
/"KSO4output"
: bisulfate dissociation constant at input/output conditions (or"KSinput"
/"KSoutput"
, deprecated)."KP1input"
/"KP1output"
: first phosphoric acid dissociation constant at input/output conditions."KP2input"
/"KP2output"
: second phosphoric acid dissociation constant at input/output conditions."KP3input"
/"KP3output"
: third phosphoric acid dissociation constant at input/output conditions."KSiinput"
/"KSioutput"
: silicic acid dissociation constant at input/output conditions."KNH3input"
/"KNH3output"
: ammonium equilibrium constant at input/output conditions."KH2Sinput"
/"KH2Soutput"
: hydrogen sulfide equilibrium constant at input/output conditions."KCainput"
/"KCaoutput"
: calcite solubility product at input/output conditions."KArinput"
/"KARoutput"
: aragonite solubility product at input/output conditions.
The ideal gas constant used in the calculations is also returned. Note the unusual unit:
"RGas"
: ideal gas constant in ml·bar−1·mol−1·K−1.
Function inputs¶
"PAR1"
/"PAR2"
: inputsPAR1
/PAR2
."TEMPIN"
/"TEMPOUT"
: inputsTEMPIN
/TEMPOUT
."PRESIN"
/"PRESOUT"
: inputsPRESIN
/PRESOUT
."PAR1TYPE"
/"PAR2TYPE"
: inputsPAR1TYPE
/PAR2TYPE
."K1K2CONSTANTS"
: inputK1K2CONSTANTS
."KSO4CONSTANTS"
: inputKSO4CONSTANTS
."KFCONSTANT"
: inputKFCONSTANT
."pHSCALEIN"
: inputpHSCALEIN
."SAL"
: inputSAL
."PO4"
: inputPO4
."SI"
: inputSI
."NH3"
: inputNH3
."H2S"
: inputH2S
."WhichR"
: inputWhichR
.
Finally, CO2SYS
splits up the input KSO4CONSTANTS
into two separate settings variables internally, which are also returned in the CO2dict
output:
The original CO2SYS clone¶
Originally, the main CO2SYS
function in PyCO2SYS was an as-close-as-possible clone of CO2SYS v2.0.5 for MATLAB (from here). Since then the code has been substantially reorganised and made more Pythonic behind the scenes and it is this Pythonised version that is now called up by from PyCO2SYS import CO2SYS
.
Warning
We strongly recommend that you use a Pythonised version e.g. described above!
If you do need to use the as-close-as-possible clone instead, this is still available via:
# Import the original CO2SYS clone
from PyCO2SYS.original import CO2SYS
# Run CO2SYS
DATA, HEADERS, NICEHEADERS = CO2SYS(PAR1, PAR2, PAR1TYPE, PAR2TYPE,
SAL, TEMPIN, TEMPOUT, PRESIN, PRESOUT, SI, PO4,
pHSCALEIN, K1K2CONSTANTS, KSO4CONSTANTS)
The inputs are the same as described above except:
PAR1TYPE
andPAR2TYPE
can only take values from1
to5
inclusive.- The optional extra inputs (
NH3
,H2S
andKFCONSTANT
) are not allowed. This is equivalent to usingNH3 = 0
,H2S = 0
andKFCONSTANT = 1
in the Pythonic version.
The outputs are also the same as described above, except:
- There are no buffer factors other than the Revelle factor.
- The Revelle factor at output conditions does not include the "Peng correction" (applicable only for
K1K2CONSTANTS = 7
). - The
KSO4CONSTANTS
input is not split intoKSO4CONSTANT
andBORON
. - There are none of the outputs associated with the
NH3
andH2S
equilibria. TCa
is not provided.- They are reported in the original MATLAB style:
DATA
contains a matrix of all calculated values.HEADERS
indicate the variable in each column ofDATA
.NICEHEADERS
is an alternative toHEADERS
containing a little more information about each variable.
To convert these MATLAB-style outputs into a dict comparable to CO2dict
:
CO2dict = {header: DATA[:, h] for h, header in enumerate(HEADERS)}