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

[MPL] solid grain pressure variable for density.

Used by exponential solid density.
parent 746d3e00
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,10 @@ Variable convertStringToVariable(std::string const& input)
{
return Variable::grain_compressibility;
}
if (boost::iequals(input, "solid_grain_pressure"))
{
return Variable::solid_grain_pressure;
}
OGS_FATAL(
"The variable name '{:s}' does not correspond to any known variable",
......
......@@ -52,6 +52,7 @@ enum class Variable : int
liquid_saturation_rate,
phase_pressure,
porosity,
solid_grain_pressure,
strain,
stress,
temperature,
......
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