mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06: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:
@@ -468,8 +468,8 @@ void RimGeoMechResultDefinition::loadResult()
|
||||
{
|
||||
if ( m_geomCase && m_geomCase->geoMechData() )
|
||||
{
|
||||
if ( this->resultAddress().fieldName == RiaDefines::wellPathFGResultName().toStdString() ||
|
||||
this->resultAddress().fieldName == RiaDefines::wellPathSFGResultName().toStdString() )
|
||||
if ( this->resultAddress().fieldName == RiaDefines::wbsFGResultName().toStdString() ||
|
||||
this->resultAddress().fieldName == RiaDefines::wbsSFGResultName().toStdString() )
|
||||
{
|
||||
RigFemResultAddress stressResAddr( RIG_ELEMENT_NODAL, std::string( "ST" ), "" );
|
||||
RigFemResultAddress porBarResAddr( RIG_ELEMENT_NODAL, std::string( "POR-Bar" ), "" );
|
||||
@@ -625,6 +625,7 @@ QString RimGeoMechResultDefinition::convertToUiResultFieldName( QString resultFi
|
||||
if ( resultFieldName == "POR-Bar" ) newName = "POR"; // POR-Bar appear as POR
|
||||
if ( resultFieldName == "MODULUS" ) newName = "Young's Modulus";
|
||||
if ( resultFieldName == "RATIO" ) newName = "Poisson's Ratio";
|
||||
if ( resultFieldName == "UCS" ) newName = "UCS bar/ 100";
|
||||
|
||||
return newName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user