OGS
CreateOrthotropicEmbeddedFracturePermeability.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <memory>
14#include <vector>
15
16namespace BaseLib
17{
18class ConfigTree;
19}
20
21namespace ParameterLib
22{
23struct ParameterBase;
24}
25
26namespace MaterialPropertyLib
27{
28class Property;
29
30std::unique_ptr<Property> createOrthotropicEmbeddedFracturePermeability(
31 int const geometry_dimension, BaseLib::ConfigTree const& config,
32 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
33 parameters);
34} // namespace MaterialPropertyLib
std::unique_ptr< Property > createOrthotropicEmbeddedFracturePermeability(int const geometry_dimension, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters)