swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 65b31f55718200fcf4bd5ec6af5a701f51b63a3f authored by wenqing on 16 April 2021, 13:39:35 UTC
Merge branch 'fixTRM' into 'master'
Tip revision: 65b31f5
CreateChargeBalance.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 "CreateChargeBalance.h"

#include "BaseLib/ConfigTree.h"
#include "BaseLib/Error.h"
#include "ChargeBalance.h"

namespace ChemistryLib
{
ChargeBalance createChargeBalance(BaseLib::ConfigTree const& config)
{
    auto const charge_balance =
        //! \ogs_file_param{prj__chemical_system__solution__charge_balance}
        config.getConfigParameterOptional<std::string>("charge_balance");

    if (!charge_balance)
    {
        return ChargeBalance::Unspecified;
    }
    if (*charge_balance == "pH")
    {
        return ChargeBalance::pH;
    }
    if (*charge_balance == "pe")
    {
        return ChargeBalance::pe;
    }

    OGS_FATAL(
        "Error in specifying the way in which charge balance is achieved.  "
        "Adjusting pH value or pe value are supported at this moment.");
}
}  // namespace ChemistryLib
back to top