mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2349 Elm Props: Create list of imported files in Geomech Case prop pan
This commit is contained in:
parent
9513cb61d5
commit
57ae195372
@ -60,6 +60,7 @@ RimGeoMechCase::RimGeoMechCase(void)
|
||||
CAF_PDM_InitField(&m_cohesion, "CaseCohesion", 10.0, "Cohesion", "", "Used to calculate the SE:SFI result", "");
|
||||
CAF_PDM_InitField(&m_frictionAngleDeg, "FrctionAngleDeg", 30.0, "Friction Angle [Deg]", "", "Used to calculate the SE:SFI result", "");
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&m_elementPropertyFileNames, "ElementPropertyFileNames", "Element Property Files", "", "", "");
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -470,10 +471,12 @@ void RimGeoMechCase::defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering&
|
||||
uiOrdering.add(&caseId);
|
||||
uiOrdering.add(&m_caseFileName);
|
||||
|
||||
auto group = uiOrdering.addNewGroup("Case Options");
|
||||
group->add(&activeFormationNames);
|
||||
group->add(&m_cohesion);
|
||||
group->add(&m_frictionAngleDeg);
|
||||
caf::PdmUiGroup* caseGroup = uiOrdering.addNewGroup("Case Options");
|
||||
caseGroup->add(&activeFormationNames);
|
||||
caseGroup->add(&m_cohesion);
|
||||
caseGroup->add(&m_frictionAngleDeg);
|
||||
|
||||
caf::PdmUiGroup* elmPropGroup = uiOrdering.addNewGroup("Element Properties");
|
||||
elmPropGroup->add(&m_elementPropertyFileNames);
|
||||
}
|
||||
|
||||
|
@ -89,4 +89,5 @@ private:
|
||||
caf::PdmField<QString> m_caseFileName;
|
||||
caf::PdmField<double> m_cohesion;
|
||||
caf::PdmField<double> m_frictionAngleDeg;
|
||||
caf::PdmField<std::vector<QString> > m_elementPropertyFileNames;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user