mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1550 Making separate group for MSW parameter in FishbonesCollection to avoid confusion about what parameters are used for.
This commit is contained in:
parent
42e41355c1
commit
3960c9db90
@ -216,6 +216,7 @@ void RicFishbonesTransmissibilityCalculationFeatureImp::findMainWellBoreParts(st
|
|||||||
|
|
||||||
for (auto& cell : intersectedCellsIntersectionInfo)
|
for (auto& cell : intersectedCellsIntersectionInfo)
|
||||||
{
|
{
|
||||||
|
//TODO: should skinFactor be taken from well group instead???
|
||||||
double skinFactor = wellPath->fishbonesCollection()->wellPathCollection()->skinFactor();
|
double skinFactor = wellPath->fishbonesCollection()->wellPathCollection()->skinFactor();
|
||||||
QString completionMetaData = wellPath->name() + " main bore";
|
QString completionMetaData = wellPath->name() + " main bore";
|
||||||
WellBorePartForTransCalc wellBorePart = WellBorePartForTransCalc(cell.internalCellLengths,
|
WellBorePartForTransCalc wellBorePart = WellBorePartForTransCalc(cell.internalCellLengths,
|
||||||
|
@ -111,10 +111,13 @@ void RimFishbonesCollection::defineUiOrdering(QString uiConfigName, caf::PdmUiOr
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uiOrdering.add(&m_startMD);
|
caf::PdmUiGroup* wellGroup = uiOrdering.addNewGroup("Fishbone Well Properties");
|
||||||
uiOrdering.add(&m_mainBoreDiameter);
|
wellGroup->add(&m_startMD);
|
||||||
uiOrdering.add(&m_linerDiameter);
|
wellGroup->add(&m_mainBoreDiameter);
|
||||||
uiOrdering.add(&m_roughnessFactor);
|
|
||||||
|
caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Wells");
|
||||||
|
mswGroup->add(&m_linerDiameter);
|
||||||
|
mswGroup->add(&m_roughnessFactor);
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user