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

[CL] Dropped time step size setter.

parent f283de2e
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,6 @@ public: ...@@ -20,8 +20,6 @@ public:
virtual void doWaterChemistryCalculation( virtual void doWaterChemistryCalculation(
std::vector<GlobalVector*>& process_solutions, double const dt) = 0; std::vector<GlobalVector*>& process_solutions, double const dt) = 0;
virtual void setTimeStepSize(double const dt) = 0;
virtual ~ChemicalSolverInterface() = default; virtual ~ChemicalSolverInterface() = default;
}; };
} // namespace ChemistryLib } // namespace ChemistryLib
...@@ -87,9 +87,8 @@ void PhreeqcIO::doWaterChemistryCalculation( ...@@ -87,9 +87,8 @@ void PhreeqcIO::doWaterChemistryCalculation(
{ {
setAqueousSolutionsOrUpdateProcessSolutions( setAqueousSolutionsOrUpdateProcessSolutions(
process_solutions, Status::SettingAqueousSolutions); process_solutions, Status::SettingAqueousSolutions);
setTimeStepSize(dt);
writeInputsToFile(); writeInputsToFile(dt);
execute(); execute();
...@@ -175,7 +174,7 @@ void PhreeqcIO::setAqueousSolutionsOrUpdateProcessSolutions( ...@@ -175,7 +174,7 @@ void PhreeqcIO::setAqueousSolutionsOrUpdateProcessSolutions(
} }
} }
void PhreeqcIO::writeInputsToFile() void PhreeqcIO::writeInputsToFile(double const dt)
{ {
DBUG("Writing phreeqc inputs into file '%s'.", _phreeqc_input_file.c_str()); DBUG("Writing phreeqc inputs into file '%s'.", _phreeqc_input_file.c_str());
std::ofstream out(_phreeqc_input_file, std::ofstream::out); std::ofstream out(_phreeqc_input_file, std::ofstream::out);
...@@ -186,7 +185,7 @@ void PhreeqcIO::writeInputsToFile() ...@@ -186,7 +185,7 @@ void PhreeqcIO::writeInputsToFile()
_phreeqc_input_file.c_str()); _phreeqc_input_file.c_str());
} }
out << *this; out << (*this << dt);
if (!out) if (!out)
{ {
......
...@@ -51,9 +51,7 @@ public: ...@@ -51,9 +51,7 @@ public:
std::vector<GlobalVector*> const& process_solutions, std::vector<GlobalVector*> const& process_solutions,
Status const status); Status const status);
void setTimeStepSize(double const dt) override { _dt = dt; } void writeInputsToFile(double const dt);
void writeInputsToFile();
void execute(); void execute();
...@@ -67,6 +65,12 @@ public: ...@@ -67,6 +65,12 @@ public:
std::string const _phreeqc_input_file; std::string const _phreeqc_input_file;
private: private:
PhreeqcIO& operator<<(int dt)
{
_dt = dt;
return *this;
}
std::string const _database; std::string const _database;
std::vector<AqueousSolution> _aqueous_solutions; std::vector<AqueousSolution> _aqueous_solutions;
std::vector<EquilibriumPhase> _equilibrium_phases; std::vector<EquilibriumPhase> _equilibrium_phases;
......
...@@ -47,8 +47,6 @@ public: ...@@ -47,8 +47,6 @@ public:
void setAqueousSolutions( void setAqueousSolutions(
std::vector<GlobalVector*> const& process_solutions); std::vector<GlobalVector*> const& process_solutions);
void setTimeStepSize(double const dt) override;
void execute(std::vector<GlobalVector*>& process_solutions); void execute(std::vector<GlobalVector*>& process_solutions);
void updateNodalProcessSolutions( void updateNodalProcessSolutions(
...@@ -70,6 +68,8 @@ private: ...@@ -70,6 +68,8 @@ private:
return strcmp(element, "H") == 0 ? true : false; return strcmp(element, "H") == 0 ? true : false;
} }
void setTimeStepSize(double const dt);
std::map<int, struct master*> _process_id_to_master_map; std::map<int, struct master*> _process_id_to_master_map;
cxxISolution _initial_aqueous_solution; cxxISolution _initial_aqueous_solution;
std::vector<ReactionRate> const _reaction_rates; std::vector<ReactionRate> const _reaction_rates;
......
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