https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 9c402eba04fc719ba2453996d4613d137c83291f authored by Tom Fischer on 09 October 2023, 13:23:35 UTC
Merge branch 'FixHdfData' into 'master'
Tip revision: 9c402eb
createPermeabilityModel.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 *
 * Created on August 17, 2016, 2:36 PM
 */

#pragma once

#include <memory>

#include "Permeability.h"

namespace BaseLib
{
class ConfigTree;
}

namespace MaterialLib
{
namespace PorousMedium
{
/** Create a porosity model
 * \param config  ConfigTree object has a tag of `<permeability>` that
 * describes the permeability relationsship and contains the name of the
 * parameter
 * \param parameters a vector containing the available parameters
 */
std::unique_ptr<Permeability> createPermeabilityModel(
    BaseLib::ConfigTree const& config,
    std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
        parameters);

}  // namespace PorousMedium
}  // namespace MaterialLib
back to top