https://gitlab.opengeosys.org/ogs/ogs.git
Revision c04b0b7e7c91e22ea41389d9ae2efea1cb1f4910 authored by Dmitri Naumov on 19 May 2021, 14:35:45 UTC, committed by Dmitri Naumov on 19 May 2021, 15:46:41 UTC
1 parent b94ce77
Raw File
Tip revision: c04b0b7e7c91e22ea41389d9ae2efea1cb1f4910 authored by Dmitri Naumov on 19 May 2021, 14:35:45 UTC
[App/IO] Surfer raster header returns an optional.
Tip revision: c04b0b7
AqueousSolution.cpp
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#include "AqueousSolution.h"

namespace ChemistryLib
{
namespace PhreeqcKernelData
{
AqueousSolution::AqueousSolution(double const temperature,
                                 double const pressure, double const pe_value,
                                 cxxISolution const& initial_aqueous_solution)
{
    new_def = true;
    tc = temperature;
    patm = pressure;
    pe = pe_value;

    Set_initial_data(&initial_aqueous_solution);
}
}  // namespace PhreeqcKernelData
}  // namespace ChemistryLib
back to top