Skip to content
Snippets Groups Projects
Commit 032398f3 authored by wenqing's avatar wenqing
Browse files

[MPL] Registed SoilThermalConductivitySomerton

parent 6543bc7f
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,11 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty(
return createLinearSaturationSwellingStress(config);
}
if (boost::iequals(property_type, "SoilThermalConductivitySomerton"))
{
return createSoilThermalConductivitySomerton(config);
}
// If none of the above property types are found, OGS throws an error.
OGS_FATAL("The specified component property type '{:s}' was not recognized",
property_type);
......
......@@ -45,3 +45,4 @@
#include "RelativePermeability/CreateRelPermUdellNonwettingPhase.h"
#include "RelativePermeability/CreateRelPermVanGenuchten.h"
#include "SwellingStress/CreateLinearSaturationSwellingStress.h"
#include "ThermalConductivity/CreateSoilThermalConductivitySomerton.h"
......@@ -37,4 +37,5 @@
#include "RelativePermeability/RelPermVanGenuchten.h"
#include "SaturationDependentHeatConduction.h"
#include "SaturationDependentSwelling.h"
#include "ThermalConductivity/SoilThermalConductivitySomerton.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