Add result calculator for PORV*SOIL, PORV*SGAS, and PORV*(SOIL+SGAS).

This commit is contained in:
Kristian Bendiksen
2024-09-11 12:40:09 +02:00
parent 212f5bf5ae
commit 13cf450831
7 changed files with 268 additions and 1 deletions

View File

@@ -325,6 +325,30 @@ QString RiaResultNames::riOilVolumeResultName()
return "riOILVOLUME";
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
QString RiaResultNames::riPorvSoil()
{
return "riPORV*SOIL";
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
QString RiaResultNames::riPorvSgas()
{
return "riPORV*SGAS";
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
QString RiaResultNames::riPorvSoilSgas()
{
return "riPORV*(SOIL+SGAS)";
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------