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

[MPL] Saturation property name for micro-structure

In a double porosity models this represents the (micro)
capillary pressure -- (micro-)saturation relationship.
parent ab8d4bbd
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,8 @@ enum PropertyType : int ...@@ -77,6 +77,8 @@ enum PropertyType : int
/// specify retardation factor used in component transport process. /// specify retardation factor used in component transport process.
retardation_factor, retardation_factor,
saturation, saturation,
/// capillary pressure saturation relationship for microstructure.
saturation_micro,
specific_heat_capacity, specific_heat_capacity,
storage, storage,
swelling_stress_rate, swelling_stress_rate,
...@@ -257,6 +259,10 @@ inline PropertyType convertStringToProperty(std::string const& inString) ...@@ -257,6 +259,10 @@ inline PropertyType convertStringToProperty(std::string const& inString)
{ {
return PropertyType::saturation; return PropertyType::saturation;
} }
if (boost::iequals(inString, "saturation_micro"))
{
return PropertyType::saturation_micro;
}
if (boost::iequals(inString, "specific_heat_capacity")) if (boost::iequals(inString, "specific_heat_capacity"))
{ {
return PropertyType::specific_heat_capacity; return PropertyType::specific_heat_capacity;
...@@ -358,6 +364,7 @@ static const std::array<std::string, PropertyType::number_of_properties> ...@@ -358,6 +364,7 @@ static const std::array<std::string, PropertyType::number_of_properties>
"residual_liquid_saturation", "residual_liquid_saturation",
"retardation_factor", "retardation_factor",
"saturation", "saturation",
"saturation_micro",
"specific_heat_capacity", "specific_heat_capacity",
"storage", "storage",
"swelling_stress_rate", "swelling_stress_rate",
......
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