mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 07:16:53 -06:00
#3264 MSW fracture export. Rename some fields
This commit is contained in:
parent
de903c0fe0
commit
6f42d6ae1f
@ -133,7 +133,7 @@ void RimFishbonesCollection::defineUiOrdering(QString uiConfigName, caf::PdmUiOr
|
||||
wellGroup->add(&m_startMD);
|
||||
wellGroup->add(&m_mainBoreDiameter);
|
||||
wellGroup->add(&m_skinFactor);
|
||||
caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Properties");
|
||||
caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Options");
|
||||
m_mswParameters->uiOrdering(uiConfigName, *mswGroup);
|
||||
uiOrdering.skipRemainingFields(true);
|
||||
}
|
||||
|
@ -28,8 +28,8 @@ namespace caf {
|
||||
template<>
|
||||
void RimWellPathFractureCollection::ReferenceMDEnum::setUp()
|
||||
{
|
||||
addItem(RimWellPathFractureCollection::AUTO_REFERENCE_MD, "GridIntersectionRefMD", "Use depth where the well path meets grid");
|
||||
addItem(RimWellPathFractureCollection::MANUAL_REFERENCE_MD, "ManualRefMD", "Set Manually");
|
||||
addItem(RimWellPathFractureCollection::AUTO_REFERENCE_MD, "GridIntersectionRefMD", "Grid Entry Point");
|
||||
addItem(RimWellPathFractureCollection::MANUAL_REFERENCE_MD, "ManualRefMD", "User Defined");
|
||||
setDefault(RimWellPathFractureCollection::AUTO_REFERENCE_MD);
|
||||
}
|
||||
}
|
||||
@ -50,8 +50,8 @@ RimWellPathFractureCollection::RimWellPathFractureCollection(void)
|
||||
setName("Fractures");
|
||||
nameField()->uiCapability()->setUiHidden(true);
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&m_refMDType, "RefMDType", "Reference Depth", "", "", "");
|
||||
CAF_PDM_InitField(&m_refMD, "RefMD", 0.0, "Reference MD", "", "", "");
|
||||
CAF_PDM_InitFieldNoDefault(&m_refMDType, "RefMDType", "Reference MD", "", "", "");
|
||||
CAF_PDM_InitField(&m_refMD, "RefMD", 0.0, "", "", "", "");
|
||||
CAF_PDM_InitFieldNoDefault(&m_mswParameters, "MswParameters", "Multi Segment Well Parameters", "", "", "");
|
||||
m_mswParameters = new RimMswCompletionParameters;
|
||||
m_mswParameters.uiCapability()->setUiTreeHidden(true);
|
||||
@ -151,7 +151,7 @@ std::vector<RimWellPathFracture*> RimWellPathFractureCollection::activeFractures
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellPathFractureCollection::defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering)
|
||||
{
|
||||
caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Properties");
|
||||
caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Options");
|
||||
|
||||
mswGroup->add(&m_refMDType);
|
||||
mswGroup->add(&m_refMD);
|
||||
|
Loading…
Reference in New Issue
Block a user