mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
* Initial WIP * Identical results with spreadsheet * Improved and more robust smoothing by filtering points first * Improved smoothing and more GUI * Include mixed-label for smoothing threshold * Implement WBS parameters track * Much better alignment of tracks without flickering * Don't replace user description when dragging and dropping tracks * Fix missing OBG and SH curves * Fix curve and track D&D * Make sure parameter curves aren't WBS curves
This commit is contained in:
@@ -400,7 +400,7 @@ QString RiaDefines::activeFormationNamesResultName()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wellPathAzimuthResultName()
|
||||
QString RiaDefines::wbsAzimuthResultName()
|
||||
{
|
||||
return "Azimuth";
|
||||
}
|
||||
@@ -408,7 +408,7 @@ QString RiaDefines::wellPathAzimuthResultName()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wellPathInclinationResultName()
|
||||
QString RiaDefines::wbsInclinationResultName()
|
||||
{
|
||||
return "Inclination";
|
||||
}
|
||||
@@ -416,7 +416,7 @@ QString RiaDefines::wellPathInclinationResultName()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wellPathPPResultName()
|
||||
QString RiaDefines::wbsPPResultName()
|
||||
{
|
||||
return "PP";
|
||||
}
|
||||
@@ -424,7 +424,7 @@ QString RiaDefines::wellPathPPResultName()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wellPathSHResultName()
|
||||
QString RiaDefines::wbsSHResultName()
|
||||
{
|
||||
return "SH";
|
||||
}
|
||||
@@ -432,7 +432,7 @@ QString RiaDefines::wellPathSHResultName()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wellPathOBGResultName()
|
||||
QString RiaDefines::wbsOBGResultName()
|
||||
{
|
||||
return "OBG";
|
||||
}
|
||||
@@ -440,7 +440,7 @@ QString RiaDefines::wellPathOBGResultName()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wellPathFGResultName()
|
||||
QString RiaDefines::wbsFGResultName()
|
||||
{
|
||||
return "FG";
|
||||
}
|
||||
@@ -448,17 +448,33 @@ QString RiaDefines::wellPathFGResultName()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wellPathSFGResultName()
|
||||
QString RiaDefines::wbsSFGResultName()
|
||||
{
|
||||
return "SFG";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wbsPoissonParameterName()
|
||||
{
|
||||
return "RATIO";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RiaDefines::wbsUCSParameterName()
|
||||
{
|
||||
return "UCS";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<QString> RiaDefines::wellPathAngleResultNames()
|
||||
{
|
||||
return {RiaDefines::wellPathAzimuthResultName(), RiaDefines::wellPathInclinationResultName()};
|
||||
return {wbsAzimuthResultName(), wbsInclinationResultName()};
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -466,11 +482,15 @@ std::vector<QString> RiaDefines::wellPathAngleResultNames()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<QString> RiaDefines::wellPathStabilityResultNames()
|
||||
{
|
||||
return {RiaDefines::wellPathFGResultName(),
|
||||
RiaDefines::wellPathOBGResultName(),
|
||||
RiaDefines::wellPathPPResultName(),
|
||||
RiaDefines::wellPathSFGResultName(),
|
||||
RiaDefines::wellPathSHResultName()};
|
||||
return {wbsFGResultName(), wbsOBGResultName(), wbsPPResultName(), wbsSFGResultName(), wbsSHResultName()};
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<QString> RiaDefines::wellPathStabilityParameterNames()
|
||||
{
|
||||
return {wbsPoissonParameterName(), wbsUCSParameterName()};
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -114,17 +114,20 @@ QString mockModelBasicInputCase();
|
||||
QString activeFormationNamesResultName();
|
||||
|
||||
// Well path derived results
|
||||
QString wellPathAzimuthResultName();
|
||||
QString wellPathInclinationResultName();
|
||||
QString wellPathPPResultName();
|
||||
QString wellPathSHResultName();
|
||||
QString wellPathOBGResultName();
|
||||
QString wellPathFGResultName();
|
||||
QString wellPathSFGResultName();
|
||||
QString wbsAzimuthResultName();
|
||||
QString wbsInclinationResultName();
|
||||
QString wbsPPResultName();
|
||||
QString wbsSHResultName();
|
||||
QString wbsOBGResultName();
|
||||
QString wbsFGResultName();
|
||||
QString wbsSFGResultName();
|
||||
QString wbsPoissonParameterName();
|
||||
QString wbsUCSParameterName();
|
||||
|
||||
// List of well path derived results
|
||||
std::vector<QString> wellPathAngleResultNames();
|
||||
std::vector<QString> wellPathStabilityResultNames();
|
||||
std::vector<QString> wellPathStabilityParameterNames();
|
||||
|
||||
// Units and conversions
|
||||
enum DepthUnitType
|
||||
|
||||
Reference in New Issue
Block a user