Rate Constants (except user defined ones)#
MICM supports a subset of the rate constants defined as part of the
OpenAtmos Mechanism Configuration
We will be adding more in the future.
The links to the micm
classes below detail the class and methods. Please check the OpenAtmos standard for
specifics on the algorithm implemented for each rate constant type.
At present, supported rate constants are:
micm::ArrheniusRateConstant
, OpenAtmos Arrhenius descriptionmicm::TernaryChemicalActivationRateConstant
, OpenAtmos Ternay chemical activiation descriptionmicm::TunnelingRateConstant
, OpenAtmos Tunneling descriptionmicm::UserDefinedRateConstant
, this is a custom type, but this is how photolysis, first order loss, and emission rates are setup OpenAtmos Photolysis description
This tutorial covers all but the last one. See the User-Defined Rate Constants tutorial for examples and use cases on that.
We’ll setup and solve a fake chemical system with 7 species and 6 reactions,
MICM can be configured in two ways. We can either build the mechanism up by hand with the micm
API,
or parse a valid mechanism Configuration
in the OpenAtmos format. In this tutorial, we will do both.
If you’re looking for a copy and paste, choose the appropriate tab below and be on your way! Otherwise, stick around for a line by line explanation.
// Each rate constant is in its own header file
#include <micm/process/arrhenius_rate_constant.hpp>
#include <micm/process/branched_rate_constant.hpp>
#include <micm/process/surface_rate_constant.hpp>
#include <micm/process/ternary_chemical_activation_rate_constant.hpp>
#include <micm/process/troe_rate_constant.hpp>
#include <micm/process/tunneling_rate_constant.hpp>
#include <micm/solver/rosenbrock.hpp>
#include <micm/solver/solver_builder.hpp>
#include <micm/util/constants.hpp>
#include <iomanip>
#include <iostream>
#include <map>
// Use our namespace so that this example is easier to read
using namespace micm;
// Conversion factor from moles m-3 to molecules cm-3 for consistency
// with the configuraion file
constexpr double MOLES_M3_TO_MOLECULES_CM3 = 1.0e-6 * constants::AVOGADRO_CONSTANT;
int main(const int argc, const char* argv[])
{
auto a = Species("A");
auto b = Species("B");
auto c = Species(
"C",
std::map<std::string, double>{ { "molecular weight [kg mol-1]", 0.025 },
{ "diffusion coefficient [m2 s-1]", 2.3e2 } });
auto d = Species("D");
auto e = Species("E");
auto f = Species("F");
auto g = Species("G");
Phase gas_phase{ std::vector<Species>{ a, b, c, d, e, f, g } };
Process r1 = Process::Create()
.SetReactants({ a })
.SetProducts({ Yields(b, 1) })
.SetRateConstant(ArrheniusRateConstant({ .A_ = 2.15e-4, .B_ = 0, .C_ = 110 }))
.SetPhase(gas_phase);
// a branched reaction has two output pathways
// this is represnted internal to micm as two different reactions
auto branched_params = BranchedRateConstantParameters{ .X_ = 1.2, .Y_ = 204.3, .a0_ = 1.0e-3, .n_ = 2 };
branched_params.branch_ = BranchedRateConstantParameters::Branch::Alkoxy;
Process r2 = Process::Create()
.SetReactants({ b })
.SetProducts({ Yields(c, 1) })
.SetRateConstant(BranchedRateConstant(branched_params))
.SetPhase(gas_phase);
branched_params.branch_ = BranchedRateConstantParameters::Branch::Nitrate;
Process r3 = Process::Create()
.SetReactants({ b })
.SetProducts({ Yields(d, 1) })
.SetRateConstant(BranchedRateConstant(branched_params))
.SetPhase(gas_phase);
// A surface rate constant also needs to know the effective radius and particle number concentration
// we will set those later
Process r4 = Process::Create()
.SetReactants({ c })
.SetProducts({ Yields(e, 1) })
.SetRateConstant(SurfaceRateConstant({ .label_ = "C", .species_ = c, .reaction_probability_ = 0.90 }))
.SetPhase(gas_phase);
Process r5 = Process::Create()
.SetReactants({ d })
.SetProducts({ Yields(f, 2) })
.SetRateConstant(TernaryChemicalActivationRateConstant({ .k0_A_ = 1.2,
.k0_B_ = 2.3,
.k0_C_ = 302.3,
.kinf_A_ = 2.6 / MOLES_M3_TO_MOLECULES_CM3,
.kinf_B_ = -3.1,
.kinf_C_ = 402.1,
.Fc_ = 0.9,
.N_ = 1.2 }))
.SetPhase(gas_phase);
// to have a stoichiemetric coefficient of more than one for reactants,
// list the reactant that many times
Process r6 = Process::Create()
.SetReactants({ e, e })
.SetProducts({ Yields(g, 1) })
.SetRateConstant(TroeRateConstant({ .k0_A_ = 1.2e4 * MOLES_M3_TO_MOLECULES_CM3 * MOLES_M3_TO_MOLECULES_CM3,
.k0_B_ = 167.0,
.k0_C_ = 3.0,
.kinf_A_ = 136.0 * MOLES_M3_TO_MOLECULES_CM3,
.kinf_B_ = 5.0,
.kinf_C_ = 24.0,
.Fc_ = 0.9,
.N_ = 0.8 }))
.SetPhase(gas_phase);
Process r7 = Process::Create()
.SetReactants({ f })
.SetProducts({ Yields(g, 1) })
.SetRateConstant(TunnelingRateConstant({ .A_ = 1.2, .B_ = 2.3, .C_ = 302.3 }))
.SetPhase(gas_phase);
auto chemical_system = System(micm::SystemParameters{ .gas_phase_ = gas_phase });
auto reactions = std::vector<micm::Process>{ r1, r2, r3, r4, r5, r6, r7 };
auto solver = micm::CpuSolverBuilder<micm::RosenbrockSolverParameters>(micm::RosenbrockSolverParameters::ThreeStageRosenbrockParameters())
.SetSystem(chemical_system)
.SetReactions(reactions)
.Build();
State state = solver.GetState();
state.conditions_[0].temperature_ = 287.45; // K
state.conditions_[0].pressure_ = 101319.9; // Pa
state.conditions_[0].CalculateIdealAirDensity();
state.SetConcentration(a, 1.0); // mol m-3
state.SetConcentration(b, 0.0); // mol m-3
state.SetConcentration(c, 0.0); // mol m-3
state.SetConcentration(d, 0.0); // mol m-3
state.SetConcentration(e, 0.0); // mol m-3
state.SetConcentration(f, 0.0); // mol m-3
state.SetConcentration(g, 0.0); // mol m-3
state.SetCustomRateParameter("C.effective radius [m]", 1e-7);
state.SetCustomRateParameter("C.particle number concentration [# m-3]", 2.5e6);
// choose a timestep and print the initial state
double time_step = 500; // s
state.PrintHeader();
state.PrintState(0);
// solve for ten iterations
for (int i = 0; i < 10; ++i)
{
// Depending on how stiff the system is
// the solver integration step may not be able to solve for the full time step
// so we need to track how much time the solver was able to integrate for and continue
// solving until we finish
double elapsed_solve_time = 0;
solver.CalculateRateConstants(state);
while (elapsed_solve_time < time_step)
{
auto result = solver.Solve(time_step - elapsed_solve_time, state);
elapsed_solve_time += result.final_time_;
}
state.PrintState(time_step * (i + 1));
}
return 0;
}
Line-by-line explanation#
To get started, we’ll need to include each rate constant type and the rosenbrock solver at the top of the file.
// Each rate constant is in its own header file #include <micm/process/arrhenius_rate_constant.hpp> #include <micm/process/branched_rate_constant.hpp> #include <micm/process/surface_rate_constant.hpp> #include <micm/process/ternary_chemical_activation_rate_constant.hpp> #include <micm/process/troe_rate_constant.hpp> #include <micm/process/tunneling_rate_constant.hpp> #include <micm/solver/rosenbrock.hpp> #include <micm/solver/solver_builder.hpp> #include <micm/util/constants.hpp> #include <iomanip> #include <iostream> #include <map>
After that, we’ll use the micm
namespace so that we don’t have to repeat it everywhere we need it.
// Use our namespace so that this example is easier to read using namespace micm;
To create a micm::RosenbrockSolver
, we have to define a chemical system (micm::System
)
and our reactions, which will be a vector of micm::Process
We will use the species to define these.
To do this by hand, we have to define all of the chemical species in the system. This allows us to set any properties of the species that may be necessary for rate constanta calculations, like molecular weights and diffusion coefficients for the surface reaction. We will also put these species into the gas phase.
auto a = Species("A");
auto b = Species("B");
auto c = Species(
"C",
std::map<std::string, double>{ { "molecular weight [kg mol-1]", 0.025 },
{ "diffusion coefficient [m2 s-1]", 2.3e2 } });
auto d = Species("D");
auto e = Species("E");
auto f = Species("F");
auto g = Species("G");
Phase gas_phase{ std::vector<Species>{ a, b, c, d, e, f, g } };
Now that we have a gas phase and our species, we can start building the reactions. Two things to note are that
stoichiemtric coefficients for reactants are represented by repeating that product as many times as you need.
To specify the yield of a product, we’ve created a typedef micm::Yield
and a function micm::Yields()
that produces these. Note that we add a conversion for
some rate constant parameters to be consistent with the configuration file that expects rate constants
to be in cm^3/molecule/s. (All units will be mks in the next version of the configuration file format.)
Process r1 = Process::Create()
.SetReactants({ a })
.SetProducts({ Yields(b, 1) })
.SetRateConstant(ArrheniusRateConstant({ .A_ = 2.15e-4, .B_ = 0, .C_ = 110 }))
.SetPhase(gas_phase);
// a branched reaction has two output pathways
// this is represnted internal to micm as two different reactions
auto branched_params = BranchedRateConstantParameters{ .X_ = 1.2, .Y_ = 204.3, .a0_ = 1.0e-3, .n_ = 2 };
branched_params.branch_ = BranchedRateConstantParameters::Branch::Alkoxy;
Process r2 = Process::Create()
.SetReactants({ b })
.SetProducts({ Yields(c, 1) })
.SetRateConstant(BranchedRateConstant(branched_params))
.SetPhase(gas_phase);
branched_params.branch_ = BranchedRateConstantParameters::Branch::Nitrate;
Process r3 = Process::Create()
.SetReactants({ b })
.SetProducts({ Yields(d, 1) })
.SetRateConstant(BranchedRateConstant(branched_params))
.SetPhase(gas_phase);
// A surface rate constant also needs to know the effective radius and particle number concentration
// we will set those later
Process r4 = Process::Create()
.SetReactants({ c })
.SetProducts({ Yields(e, 1) })
.SetRateConstant(SurfaceRateConstant({ .label_ = "C", .species_ = c, .reaction_probability_ = 0.90 }))
.SetPhase(gas_phase);
Process r5 = Process::Create()
.SetReactants({ d })
.SetProducts({ Yields(f, 2) })
.SetRateConstant(TernaryChemicalActivationRateConstant({ .k0_A_ = 1.2,
.k0_B_ = 2.3,
.k0_C_ = 302.3,
.kinf_A_ = 2.6 / MOLES_M3_TO_MOLECULES_CM3,
.kinf_B_ = -3.1,
.kinf_C_ = 402.1,
.Fc_ = 0.9,
.N_ = 1.2 }))
.SetPhase(gas_phase);
// to have a stoichiemetric coefficient of more than one for reactants,
// list the reactant that many times
Process r6 = Process::Create()
.SetReactants({ e, e })
.SetProducts({ Yields(g, 1) })
.SetRateConstant(TroeRateConstant({ .k0_A_ = 1.2e4 * MOLES_M3_TO_MOLECULES_CM3 * MOLES_M3_TO_MOLECULES_CM3,
.k0_B_ = 167.0,
.k0_C_ = 3.0,
.kinf_A_ = 136.0 * MOLES_M3_TO_MOLECULES_CM3,
.kinf_B_ = 5.0,
.kinf_C_ = 24.0,
.Fc_ = 0.9,
.N_ = 0.8 }))
.SetPhase(gas_phase);
Process r7 = Process::Create()
.SetReactants({ f })
.SetProducts({ Yields(g, 1) })
.SetRateConstant(TunnelingRateConstant({ .A_ = 1.2, .B_ = 2.3, .C_ = 302.3 }))
.SetPhase(gas_phase);
And finally we define our chemical system and reactions
auto chemical_system = System(micm::SystemParameters{ .gas_phase_ = gas_phase });
auto reactions = std::vector<micm::Process>{ r1, r2, r3, r4, r5, r6, r7 };
Now that we have a chemical system and a list of reactions, we can create the RosenbrockSolver.
There are several ways to configure the solver. Here we are using a three stage solver. More options
can be found in the micm::RosenbrockSolverParameters
and in the Solver configurations tutorial.
auto solver = micm::CpuSolverBuilder<micm::RosenbrockSolverParameters>(micm::RosenbrockSolverParameters::ThreeStageRosenbrockParameters()) .SetSystem(chemical_system) .SetReactions(reactions) .Build();
The rosenbrock solver will provide us a state, which we can use to set the concentrations, custom rate parameters, and temperature and pressure. Note that setting the custom rate paramters is different depending on if you define the configuration by hand or read it in. The parser has defaults for the names of the custom parameters and when defined by hand we choose these.
Initializing the state#
State state = solver.GetState();
state.conditions_[0].temperature_ = 287.45; // K
state.conditions_[0].pressure_ = 101319.9; // Pa
state.conditions_[0].CalculateIdealAirDensity();
state.SetConcentration(a, 1.0); // mol m-3
state.SetConcentration(b, 0.0); // mol m-3
state.SetConcentration(c, 0.0); // mol m-3
state.SetConcentration(d, 0.0); // mol m-3
state.SetConcentration(e, 0.0); // mol m-3
state.SetConcentration(f, 0.0); // mol m-3
state.SetConcentration(g, 0.0); // mol m-3
state.SetCustomRateParameter("C.effective radius [m]", 1e-7);
state.SetCustomRateParameter("C.particle number concentration [# m-3]", 2.5e6);
Finally, we are ready to pick a timestep and solve the system.
double time_step = 500; // s state.PrintHeader(); state.PrintState(0); // solve for ten iterations for (int i = 0; i < 10; ++i) { // Depending on how stiff the system is // the solver integration step may not be able to solve for the full time step // so we need to track how much time the solver was able to integrate for and continue // solving until we finish double elapsed_solve_time = 0; solver.CalculateRateConstants(state); while (elapsed_solve_time < time_step) { auto result = solver.Solve(time_step - elapsed_solve_time, state); elapsed_solve_time += result.final_time_; } state.PrintState(time_step * (i + 1)); }
This is the output:
0 |
1.00e+00 |
0.00e+00 |
0.00e+00 |
0.00e+00 |
0.00e+00 |
0.00e+00 |
0.00e+00 |
500 |
8.54e-01 |
4.57e-04 |
1.44e-01 |
1.55e-04 |
6.47e-14 |
1.23e-22 |
6.44e-04 |
1000 |
7.30e-01 |
3.90e-04 |
2.65e-01 |
2.89e-04 |
2.53e-13 |
2.28e-22 |
2.44e-03 |
1500 |
6.23e-01 |
3.33e-04 |
3.66e-01 |
4.02e-04 |
2.98e-13 |
3.18e-22 |
5.20e-03 |
2000 |
5.32e-01 |
2.85e-04 |
4.49e-01 |
5.00e-04 |
3.30e-13 |
3.95e-22 |
8.77e-03 |
2500 |
4.55e-01 |
2.43e-04 |
5.18e-01 |
5.83e-04 |
3.55e-13 |
4.61e-22 |
1.30e-02 |
3000 |
3.88e-01 |
2.08e-04 |
5.75e-01 |
6.54e-04 |
3.74e-13 |
5.17e-22 |
1.78e-02 |
3500 |
3.32e-01 |
1.77e-04 |
6.21e-01 |
7.14e-04 |
3.88e-13 |
5.65e-22 |
2.30e-02 |
4000 |
2.83e-01 |
1.52e-04 |
6.59e-01 |
7.66e-04 |
4.00e-13 |
6.06e-22 |
2.86e-02 |
4500 |
2.42e-01 |
1.29e-04 |
6.88e-01 |
8.10e-04 |
4.09e-13 |
6.41e-22 |
3.45e-02 |
5000 |
2.07e-01 |
1.11e-04 |
7.11e-01 |
8.48e-04 |
4.15e-13 |
6.71e-22 |
4.06e-02 |