Skip to content
Snippets Groups Projects
Commit 37c6f8e5 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Merge branch 'saturation_dependent_heat_conductivity' into 'master'

[MPL] complete !3298

See merge request ogs/ogs!3313
parents 8cd348fd ad515ad4
No related branches found
No related tags found
No related merge requests found
......@@ -151,6 +151,11 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty(
return createRelPermUdell(config);
}
if (boost::iequals(property_type, "SaturationDependentHeatConduction"))
{
return createSaturationDependentHeatConduction(config);
}
if (boost::iequals(property_type, "SaturationDependentSwelling"))
{
return createSaturationDependentSwelling(config,
......
......@@ -30,6 +30,7 @@
#include "CreatePermeabilityOrthotropicPowerLaw.h"
#include "CreatePorosityFromMassBalance.h"
#include "CreateSaturationDependentSwelling.h"
#include "CreateSaturationDependentHeatConduction.h"
#include "CreateStrainDependentPermeability.h"
#include "CreateTransportPorosityFromMassBalance.h"
#include "RelativePermeability/CreateRelPermBrooksCorey.h"
......
......@@ -29,5 +29,6 @@
#include "RelativePermeability/RelPermLiakopoulos.h"
#include "RelativePermeability/RelPermUdell.h"
#include "RelativePermeability/RelPermVanGenuchten.h"
#include "SaturationDependentHeatConduction.h"
#include "SaturationDependentSwelling.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