CAMP 1.0.0
Chemistry Across Multiple Phases
CAMP: Condensed-Phase Arrhenius Reaction

Condensed-phase Arrhenius reactions are calculated using an Arrhenius-like rate constant that takes the form:

\[ Ae^{(\frac{-E_a}{k_bT})}(\frac{T}{D})^B(1.0+E*P) \]

where \(A\) is the pre-exponential factor ( \([\mbox{U}]^{-(n-1)} s^{-1}\)), \(U\) is the unit of the reactants and products, which can be \(M\) for aqueous-phase reactions or mol \(\mbox{m}^{-3}\) for all other condensed-phase reactions, \(n\) is the number of reactants, \(E_a\) is the activation energy (J), \(k_b\) is the Boltzmann constant (J/K), \(D\) (K), \(B\) (unitless) and \(E\) ( \(Pa^{-1}\)) are reaction parameters, \(T\) is the temperature (K), and \(P\) is the pressure (Pa). The first two terms are described in Finlayson-Pitts and Pitts (2000) [Finlayson-Pitts2000] . The final term is included to accomodate CMAQ EBI solver type 7 rate constants [Gipson].

Input data for condensed-phase Arrhenius reactions have the following format:

{
"type" : "CONDENSED_PHASE_ARRHENIUS",
"A" : 123.45,
"Ea" : 123.45,
"B" : 1.3,
"D" : 300.0,
"E" : 0.6E-5,
"units" : "M",
"time unit" : "MIN",
"aerosol phase" : "my aqueous phase",
"aerosol-phase water" : "H2O_aq",
"reactants" : {
"spec1" : {},
"spec2" : { "qty" : 2 },
...
},
"products" : {
"spec3" : {},
"spec4" : { "yield" : 0.65 },
...
}
}

The key-value pairs reactants, and products are required. Reactants without a qty value are assumed to appear once in the reaction equation. Products without a specified yield are assumed to have a yield of 1.0.

Units for the reactants and products must be specified using the key units and can be either M or mol m-3. If units of M are specified, a key-value pair aerosol-phase water must also be included whose value is a string specifying the name for water in the aerosol phase.

The unit for time is assumed to be s, but inclusion of the optional key-value pair time unit = MIN can be used to indicate a rate with min as the time unit.

The key-value pair aerosol phase is required and must specify the name of the aerosol-phase in which the reaction occurs.

Optionally, a parameter C may be included, and is taken to equal \(\frac{-E_a}{k_b}\). Note that either Ea or C may be included, but not both. When neither Ea or C are included, they are assumed to be 0.0. When A is not included, it is assumed to be 1.0, when D is not included, it is assumed to be 300.0 K, when B is not included, it is assumed to be 0.0, and when E is not included, it is assumed to be 0.0.