mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#10663 WBS Plot: Import well log from CSV file.
Also compute SH_MK_MIN/EXP/MAX and FG_MK_MIN/EXP results.
This commit is contained in:
@@ -443,6 +443,38 @@ QString RiaResultNames::wbsPPResult()
|
||||
return "PP";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsPPMinResult()
|
||||
{
|
||||
return "PP_MIN";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsPPMaxResult()
|
||||
{
|
||||
return "PP_MAX";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsPPExpResult()
|
||||
{
|
||||
return "PP_EXP";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsPPInitialResult()
|
||||
{
|
||||
return "PP_INIT";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -459,6 +491,45 @@ QString RiaResultNames::wbsSHMkResult()
|
||||
return "SH_MK";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsSHMkExpResult()
|
||||
{
|
||||
return "SH_MK_EXP";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsSHMkMinResult()
|
||||
{
|
||||
return "SH_MK_MIN";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsSHMkMaxResult()
|
||||
{
|
||||
return "SH_MK_MAX";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsFGMkExpResult()
|
||||
{
|
||||
return "FG_MK_EXP";
|
||||
}
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaResultNames::wbsFGMkMinResult()
|
||||
{
|
||||
return "FG_MK_MIN";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -519,5 +590,10 @@ std::vector<QString> RiaResultNames::wbsDerivedResultNames()
|
||||
wbsSFGResult(),
|
||||
wbsSHResult(),
|
||||
wbsSHMkResult(),
|
||||
wbsSHMkExpResult(),
|
||||
wbsSHMkMinResult(),
|
||||
wbsSHMkMaxResult(),
|
||||
wbsFGMkExpResult(),
|
||||
wbsFGMkMinResult(),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user