OGS
EquilibriumReactant.cpp
Go to the documentation of this file.
1
11#include "EquilibriumReactant.h"
12
13#include <ostream>
14
15namespace ChemistryLib
16{
17namespace PhreeqcIOData
18{
19void EquilibriumReactant::print(std::ostream& os,
20 std::size_t const chemical_system_id) const
21{
22 os << name << " " << saturation_index << " "
23 << (*molality)[chemical_system_id] << " " << reaction_irreversibility
24 << "\n";
25}
26} // namespace PhreeqcIOData
27} // namespace ChemistryLib
void print(std::ostream &os, std::size_t const chemical_system_id) const