mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#8198 Stimplan: Rename enum texts for orientation of fraction and stimplan model
This commit is contained in:
parent
e1dea1d34d
commit
32ac5b8e5c
@ -44,9 +44,12 @@ namespace caf
|
||||
template <>
|
||||
void caf::AppEnum<RimFractureTemplate::FracOrientationEnum>::setUp()
|
||||
{
|
||||
addItem( RimFractureTemplate::AZIMUTH, "Az", "Azimuth" );
|
||||
addItem( RimFractureTemplate::ALONG_WELL_PATH, "AlongWellPath", "Along Well Path" );
|
||||
addItem( RimFractureTemplate::TRANSVERSE_WELL_PATH, "TransverseWellPath", "Transverse (normal) to Well Path" );
|
||||
addItem( RimFractureTemplate::AZIMUTH, "Azimuth", "Azimuth", QStringList( "Az" ) );
|
||||
addItem( RimFractureTemplate::ALONG_WELL_PATH, "Longitudinal", "Along Well Path", QStringList( "AlongWellPath" ) );
|
||||
addItem( RimFractureTemplate::TRANSVERSE_WELL_PATH,
|
||||
"Transverse",
|
||||
"Transverse (normal) to Well Path",
|
||||
QStringList( "TransverseWellPath" ) );
|
||||
|
||||
setDefault( RimFractureTemplate::TRANSVERSE_WELL_PATH );
|
||||
}
|
||||
|
@ -95,11 +95,16 @@ void caf::AppEnum<RimStimPlanModel::ExtractionType>::setUp()
|
||||
template <>
|
||||
void caf::AppEnum<RimStimPlanModel::FractureOrientation>::setUp()
|
||||
{
|
||||
addItem( RimStimPlanModel::FractureOrientation::ALONG_WELL_PATH, "ALONG_WELL_PATH", "Along Well Path" );
|
||||
addItem( RimStimPlanModel::FractureOrientation::ALONG_WELL_PATH,
|
||||
"Longitudinal",
|
||||
"Along Well Path",
|
||||
QStringList( "ALONG_WELL_PATH" ) );
|
||||
addItem( RimStimPlanModel::FractureOrientation::TRANSVERSE_WELL_PATH,
|
||||
"TRANSVERSE_WELL_PATH",
|
||||
"Transverse (normal) to Well Path" );
|
||||
addItem( RimStimPlanModel::FractureOrientation::AZIMUTH, "AZIMUTH", "Azimuth" );
|
||||
"Transverse",
|
||||
"Transverse (normal) to Well Path",
|
||||
QStringList( "TRANSVERSE_WELL_PATH" ) );
|
||||
|
||||
addItem( RimStimPlanModel::FractureOrientation::AZIMUTH, "Azimuth", "Azimuth", QStringList( "AZIMUTH" ) );
|
||||
|
||||
setDefault( RimStimPlanModel::FractureOrientation::TRANSVERSE_WELL_PATH );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user