From ad515ad469b6422fa5fe782afbf8e441c723f3ff Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Buchwald?= <joerg.buchwald@ufz.de>
Date: Wed, 9 Dec 2020 20:09:00 +0100
Subject: [PATCH] add includes to make SaturationdEpendendHeatConduction usable

---
 MaterialLib/MPL/CreateProperty.cpp            | 5 +++++
 MaterialLib/MPL/Properties/CreateProperties.h | 1 +
 MaterialLib/MPL/Properties/Properties.h       | 1 +
 3 files changed, 7 insertions(+)

diff --git a/MaterialLib/MPL/CreateProperty.cpp b/MaterialLib/MPL/CreateProperty.cpp
index 74681781567..5668a2d7e40 100644
--- a/MaterialLib/MPL/CreateProperty.cpp
+++ b/MaterialLib/MPL/CreateProperty.cpp
@@ -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,
diff --git a/MaterialLib/MPL/Properties/CreateProperties.h b/MaterialLib/MPL/Properties/CreateProperties.h
index cf18d75bff5..8bcdae319b4 100644
--- a/MaterialLib/MPL/Properties/CreateProperties.h
+++ b/MaterialLib/MPL/Properties/CreateProperties.h
@@ -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"
diff --git a/MaterialLib/MPL/Properties/Properties.h b/MaterialLib/MPL/Properties/Properties.h
index 040baee8480..2f5f09fabbb 100644
--- a/MaterialLib/MPL/Properties/Properties.h
+++ b/MaterialLib/MPL/Properties/Properties.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"
-- 
GitLab