Skip to content
Snippets Groups Projects
Commit 182df972 authored by renchao.lu's avatar renchao.lu
Browse files

[CL] Updated KineticReactant output.

parent e0e39307
No related branches found
No related tags found
No related merge requests found
...@@ -220,12 +220,14 @@ std::ostream& operator<<(std::ostream& os, PhreeqcIO const& phreeqc_io) ...@@ -220,12 +220,14 @@ std::ostream& operator<<(std::ostream& os, PhreeqcIO const& phreeqc_io)
os << equilibrium_phases << "\n"; os << equilibrium_phases << "\n";
} }
auto const& kinetic_reactants = auto const& kinetic_reactants = phreeqc_io._kinetic_reactants;
phreeqc_io._kinetic_reactants[chemical_system_id];
if (!kinetic_reactants.empty()) if (!kinetic_reactants.empty())
{ {
os << "KINETICS " << chemical_system_id + 1 << "\n"; os << "KINETICS " << chemical_system_id + 1 << "\n";
os << kinetic_reactants; for (auto const& kinetic_reactant : kinetic_reactants)
{
kinetic_reactant.print(os, chemical_system_id);
}
os << "-steps " << phreeqc_io._dt << "\n" << "\n"; os << "-steps " << phreeqc_io._dt << "\n" << "\n";
} }
......
...@@ -13,28 +13,26 @@ ...@@ -13,28 +13,26 @@
namespace ChemistryLib namespace ChemistryLib
{ {
std::ostream& operator<<(std::ostream& os, void KineticReactant::print(std::ostream& os,
KineticReactant const& kinetic_reactant) std::size_t const chemical_system_id) const
{ {
os << kinetic_reactant.name << "\n"; os << name << "\n";
if (!kinetic_reactant.chemical_formula.empty()) if (!chemical_formula.empty())
{ {
os << "-formula " << kinetic_reactant.chemical_formula << "\n"; os << "-formula " << chemical_formula << "\n";
} }
os << "-m " << kinetic_reactant.amount << "\n"; os << "-m " << (*amount)[chemical_system_id] << "\n";
if (!kinetic_reactant.parameters.empty()) if (!parameters.empty())
{ {
os << "-parms"; os << "-parms";
for (auto const& parameter : kinetic_reactant.parameters) for (auto const& parameter : parameters)
{ {
os << " " << parameter; os << " " << parameter;
} }
os << "\n"; os << "\n";
} }
return os;
} }
} // namespace ChemistryLib } // namespace ChemistryLib
...@@ -32,8 +32,7 @@ struct KineticReactant ...@@ -32,8 +32,7 @@ struct KineticReactant
{ {
} }
friend std::ostream& operator<<(std::ostream& os, void print(std::ostream& os, std::size_t const chemical_system_id) const;
KineticReactant const& kinetic_reactant);
std::string const name; std::string const name;
std::string const chemical_formula; std::string const chemical_formula;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment