OGS
PhreeqcKernelData/AqueousSolution.cpp
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#include "AqueousSolution.h"
5
6namespace ChemistryLib
7{
8namespace PhreeqcKernelData
9{
10AqueousSolution::AqueousSolution(double const temperature,
11 double const pressure, double const pe_value,
12 cxxISolution const& initial_aqueous_solution)
13{
14 new_def = true;
15 tc = temperature;
16 patm = pressure;
17 pe = pe_value;
18
19 Set_initial_data(&initial_aqueous_solution);
20}
21} // namespace PhreeqcKernelData
22} // namespace ChemistryLib
AqueousSolution(double const temperature, double const pressure, double const pe_value, cxxISolution const &initial_aqueous_solution)