OGS
CreateEmbeddedFracturePermeability.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}
20namespace ParameterLib
21{
22struct ParameterBase;
23}
24
25namespace MaterialPropertyLib
26{
27class Property;
28
29std::unique_ptr<Property> createEmbeddedFracturePermeability(
30 int const geometry_dimension, BaseLib::ConfigTree const& config,
31 std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const&
32 parameters);
33} // namespace MaterialPropertyLib
std::unique_ptr< Property > createEmbeddedFracturePermeability(int const geometry_dimension, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters)