OGS
CreateEmbeddedFracturePermeability.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6#include <memory>
7#include <vector>
8
9namespace BaseLib
10{
11class ConfigTree;
12}
13namespace ParameterLib
14{
15struct ParameterBase;
16}
17
18namespace MaterialPropertyLib
19{
20class Property;
21
22std::unique_ptr<Property> createEmbeddedFracturePermeability(
23 int const geometry_dimension, BaseLib::ConfigTree const& config,
24 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
25 parameters);
26} // namespace MaterialPropertyLib
std::unique_ptr< Property > createEmbeddedFracturePermeability(int const geometry_dimension, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters)