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

[CL] Create Phreeqc instance in the ctor.

parent 82c7b1b6
No related branches found
No related tags found
No related merge requests found
...@@ -195,19 +195,6 @@ std::ostream& operator<<(std::ostream& os, PhreeqcIO const& phreeqc_io) ...@@ -195,19 +195,6 @@ std::ostream& operator<<(std::ostream& os, PhreeqcIO const& phreeqc_io)
void PhreeqcIO::execute() void PhreeqcIO::execute()
{ {
INFO("Phreeqc: Executing chemical calculation."); INFO("Phreeqc: Executing chemical calculation.");
// initialize phreeqc configurations
auto const instance_id = CreateIPhreeqc();
// load a specific database in the working directory
if (LoadDatabase(instance_id, _database.c_str()) != 0)
{
OGS_FATAL(
"Failed in loading the specified thermodynamic database file: %s.",
_database.c_str());
}
SetSelectedOutputFileOn(instance_id, 1);
if (RunFile(instance_id, _phreeqc_input_file.c_str()) > 0) if (RunFile(instance_id, _phreeqc_input_file.c_str()) > 0)
{ {
OutputErrorString(instance_id); OutputErrorString(instance_id);
......
...@@ -47,6 +47,19 @@ public: ...@@ -47,6 +47,19 @@ public:
_output(std::move(output)), _output(std::move(output)),
_process_id_to_component_name_map(process_id_to_component_name_map) _process_id_to_component_name_map(process_id_to_component_name_map)
{ {
// initialize phreeqc configurations
auto const instance_id = CreateIPhreeqc();
// load a specific database in the working directory
if (LoadDatabase(instance_id, _database.c_str()) != 0)
{
OGS_FATAL(
"Failed in loading the specified thermodynamic database file: "
"%s.",
_database.c_str());
}
SetSelectedOutputFileOn(instance_id, 1);
} }
void doWaterChemistryCalculation( void doWaterChemistryCalculation(
......
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