swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 420a696e895b9f43627ad24d18bd462e864891ce authored by renchao.lu on 01 March 2021, 14:53:22 UTC
Merge branch 'PoreDiffusion' into 'master'
Tip revision: 420a696
CreatePorousMediaProperties.h
/**
 * \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
 */

#pragma once

#include "BaseLib/ConfigTree.h"
#include "ParameterLib/Parameter.h"
#include "PorousMediaProperties.h"

namespace MeshLib
{
class Mesh;
}

namespace MaterialLib
{
namespace PorousMedium
{
PorousMediaProperties createPorousMediaProperties(
    MeshLib::Mesh& mesh, BaseLib::ConfigTree const& configs,
    std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
        parameters);
}
}
back to top