OGS
CreateOrthotropicEmbeddedFracturePermeability.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}
13
14namespace ParameterLib
15{
16struct ParameterBase;
17}
18
19namespace MaterialPropertyLib
20{
21class Property;
22
23std::unique_ptr<Property> createOrthotropicEmbeddedFracturePermeability(
24 int const geometry_dimension, BaseLib::ConfigTree const& config,
25 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
26 parameters);
27} // namespace MaterialPropertyLib
std::unique_ptr< Property > createOrthotropicEmbeddedFracturePermeability(int const geometry_dimension, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters)