Skip to content
Snippets Groups Projects
Select Git revision
  • ee4aeabe33dbc60bd26314e15c2b839adcf11582
  • master default
  • 6.5.5
  • 6.5.4
  • 6.5.3
  • 6.5.2
  • 6.5.1
  • 6.5.0
  • 6.4.4
  • 6.4.3
  • 6.4.2
  • 6.4.1
  • 6.4.0
  • 6.3.3
  • data-explorer-5
  • 6.3.2
  • 6.3.1
  • 6.3.0
  • 6.2.2
  • 6.2.1
  • 6.2.0
  • 6.2.0-rc1
22 results
An error occurred while fetching branches. Retry the search.

VariableType.cpp

Blame
  • Forked from ogs / ogs
    15685 commits behind the upstream repository.
    Thomas Fischer's avatar
    Tom Fischer authored and Dmitri Naumov committed
    ee4aeabe
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    VariableType.cpp 1.39 KiB
    /**
     * \file
     *
     * \copyright
     * Copyright (c) 2012-2019, 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 "VariableType.h"
    #include <boost/algorithm/string/predicate.hpp>
    #include "BaseLib/Error.h"
    
    namespace MaterialPropertyLib
    {
    Variable convertStringToVariable(std::string const& input)
    {
        if (boost::iequals(input, "phase_pressure"))
        {
            return Variable::phase_pressure;
        }
        if (boost::iequals(input, "capillary_pressure"))
        {
            return Variable::capillary_pressure;
        }
        if (boost::iequals(input, "gas_density"))
        {
            return Variable::gas_density;
        }
        if (boost::iequals(input, "liquid_density"))
        {
            return Variable::liquid_density;
        }
        if (boost::iequals(input, "temperature"))
        {
            return Variable::temperature;
        }
        if (boost::iequals(input, "liquid_saturation"))
        {
            return Variable::liquid_saturation;
        }
        if (boost::iequals(input, "displacement"))
        {
            return Variable::displacement;
        }
    
        OGS_FATAL(
            "The variable name '%s' does not correspond to any known variable",
            input.c_str());
    
        return Variable::number_of_variables;  // to avoid the 'no return' warning
    }
    }  // namespace MaterialPropertyLib