OGS
PhreeqcKernelData/ReactionRate.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6#include <string>
7#include <vector>
8
9namespace ChemistryLib
10{
11namespace PhreeqcKernelData
12{
14{
15public:
16 ReactionRate(std::string kinetic_reactant_,
17 std::vector<std::string> const& statements);
18
19 std::string const& commands() const { return _commands; }
20
21public:
22 std::string const kinetic_reactant;
23
24private:
25 std::string _commands;
26};
27} // namespace PhreeqcKernelData
28} // namespace ChemistryLib
ReactionRate(std::string kinetic_reactant_, std::vector< std::string > const &statements)