Skip to content
Snippets Groups Projects
Commit ad515ad4 authored by joergbuchwald's avatar joergbuchwald
Browse files

add includes to make SaturationdEpendendHeatConduction usable

parent a0eeeaaf
No related branches found
No related tags found
No related merge requests found
...@@ -151,6 +151,11 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty( ...@@ -151,6 +151,11 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty(
return createRelPermUdell(config); return createRelPermUdell(config);
} }
if (boost::iequals(property_type, "SaturationDependentHeatConduction"))
{
return createSaturationDependentHeatConduction(config);
}
if (boost::iequals(property_type, "SaturationDependentSwelling")) if (boost::iequals(property_type, "SaturationDependentSwelling"))
{ {
return createSaturationDependentSwelling(config, return createSaturationDependentSwelling(config,
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include "CreatePermeabilityOrthotropicPowerLaw.h" #include "CreatePermeabilityOrthotropicPowerLaw.h"
#include "CreatePorosityFromMassBalance.h" #include "CreatePorosityFromMassBalance.h"
#include "CreateSaturationDependentSwelling.h" #include "CreateSaturationDependentSwelling.h"
#include "CreateSaturationDependentHeatConduction.h"
#include "CreateStrainDependentPermeability.h" #include "CreateStrainDependentPermeability.h"
#include "CreateTransportPorosityFromMassBalance.h" #include "CreateTransportPorosityFromMassBalance.h"
#include "RelativePermeability/CreateRelPermBrooksCorey.h" #include "RelativePermeability/CreateRelPermBrooksCorey.h"
......
...@@ -29,5 +29,6 @@ ...@@ -29,5 +29,6 @@
#include "RelativePermeability/RelPermLiakopoulos.h" #include "RelativePermeability/RelPermLiakopoulos.h"
#include "RelativePermeability/RelPermUdell.h" #include "RelativePermeability/RelPermUdell.h"
#include "RelativePermeability/RelPermVanGenuchten.h" #include "RelativePermeability/RelPermVanGenuchten.h"
#include "SaturationDependentHeatConduction.h"
#include "SaturationDependentSwelling.h" #include "SaturationDependentSwelling.h"
#include "TransportPorosityFromMassBalance.h" #include "TransportPorosityFromMassBalance.h"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment