mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3268 MSW Fracture Export: Add allFractures and allFishbones
This commit is contained in:
parent
7cd6c29c9c
commit
3e10e59445
@ -65,17 +65,11 @@ std::vector<RigCompletionData> RicExportFractureCompletionsImpl::generateCompdat
|
||||
{
|
||||
std::vector<const RimFracture*> fracturesAlongWellPath;
|
||||
|
||||
if (wellPath->fractureCollection()->isChecked())
|
||||
for (auto& frac : wellPath->fractureCollection()->activeFractures())
|
||||
{
|
||||
for (auto& frac : wellPath->fractureCollection()->fractures())
|
||||
{
|
||||
if (frac->isChecked())
|
||||
{
|
||||
frac->ensureValidNonDarcyProperties();
|
||||
frac->ensureValidNonDarcyProperties();
|
||||
|
||||
fracturesAlongWellPath.push_back(frac);
|
||||
}
|
||||
}
|
||||
fracturesAlongWellPath.push_back(frac);
|
||||
}
|
||||
|
||||
return generateCompdatValues(caseToApply,
|
||||
@ -444,11 +438,11 @@ std::vector<RigCompletionData> RicExportFractureCompletionsImpl::generateCompdat
|
||||
|
||||
reportItem.setData(transmissibility, allCompletionsForOneFracture.size(), fcd, area);
|
||||
|
||||
double conductivity = 0.0;
|
||||
double width = 0.0;
|
||||
double height = 0.0;
|
||||
double halfLength = 0.0;
|
||||
RiaEclipseUnitTools::UnitSystem unitSystem = RiaEclipseUnitTools::UNITS_METRIC;
|
||||
double conductivity = 0.0;
|
||||
double width = 0.0;
|
||||
double height = 0.0;
|
||||
double halfLength = 0.0;
|
||||
RiaEclipseUnitTools::UnitSystem unitSystem = RiaEclipseUnitTools::UNITS_METRIC;
|
||||
|
||||
{
|
||||
auto* ellipseTemplate = dynamic_cast<const RimEllipseFractureTemplate*>(fracTemplate);
|
||||
|
@ -130,12 +130,9 @@ void RicExportFracturesWellSegmentsFeature::onActionTriggered(bool isChecked)
|
||||
}
|
||||
else
|
||||
{
|
||||
for (RimWellPathFracture* fracture : collection->fractures())
|
||||
for (RimWellPathFracture* fracture : collection->activeFractures())
|
||||
{
|
||||
if (fracture->isChecked())
|
||||
{
|
||||
fractures.push_back(fracture);
|
||||
}
|
||||
fractures.push_back(fracture);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1102,7 +1102,7 @@ void RicWellPathExportCompletionDataFeatureImpl::exportWellPathFractureReport(
|
||||
{
|
||||
std::set<RimWellPath*> wellPathsSet;
|
||||
|
||||
auto allWellPaths = RicWellPathFractureTextReportFeatureImpl::wellPathsWithFractures();
|
||||
auto allWellPaths = RicWellPathFractureTextReportFeatureImpl::wellPathsWithActiveFractures();
|
||||
for (const auto& wellPath : allWellPaths)
|
||||
{
|
||||
for (const auto& reportItem : wellPathFractureReportItems)
|
||||
|
@ -148,7 +148,7 @@ QString RicWellPathFractureTextReportFeatureImpl::wellPathFractureReport(
|
||||
std::vector<RimWellPathFracture*> wellPathFractures;
|
||||
for (const auto& w : wellPaths)
|
||||
{
|
||||
for (const auto& frac : w->fractureCollection()->fractures())
|
||||
for (const auto& frac : w->fractureCollection()->activeFractures())
|
||||
{
|
||||
wellPathFractures.push_back(frac);
|
||||
}
|
||||
@ -182,7 +182,7 @@ QString RicWellPathFractureTextReportFeatureImpl::wellPathFractureReport(
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimWellPath*> RicWellPathFractureTextReportFeatureImpl::wellPathsWithFractures()
|
||||
std::vector<RimWellPath*> RicWellPathFractureTextReportFeatureImpl::wellPathsWithActiveFractures()
|
||||
{
|
||||
std::vector<RimWellPath*> wellPaths;
|
||||
|
||||
@ -191,7 +191,7 @@ std::vector<RimWellPath*> RicWellPathFractureTextReportFeatureImpl::wellPathsWit
|
||||
{
|
||||
for (const auto& wellPath : wellPathColl->wellPaths())
|
||||
{
|
||||
if (!wellPath->fractureCollection()->fractures().empty())
|
||||
if (!wellPath->fractureCollection()->activeFractures().empty())
|
||||
{
|
||||
wellPaths.push_back(wellPath);
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ public:
|
||||
const std::vector<RimWellPath*>& wellPaths,
|
||||
const std::vector<RicWellPathFractureReportItem>& wellPathFractureReportItems);
|
||||
|
||||
static std::vector<RimWellPath*> wellPathsWithFractures();
|
||||
static std::vector<RimWellPath*> wellPathsWithActiveFractures();
|
||||
|
||||
private:
|
||||
QString createWellFileLocationText(const std::vector<RimWellPath*>& wellPaths) const;
|
||||
|
@ -115,7 +115,7 @@ void RicCreateMultipleFracturesFeature::slotAppendFractures()
|
||||
RimWellPathFractureCollection* fractureCollection = item.wellPath->fractureCollection();
|
||||
|
||||
// If this is the first fracture, set default result name
|
||||
if (fractureCollection->fractures().empty())
|
||||
if (fractureCollection->allFractures().empty())
|
||||
{
|
||||
RimEclipseView* activeView = dynamic_cast<RimEclipseView*>(RiaApplication::instance()->activeReservoirView());
|
||||
if (activeView)
|
||||
|
@ -61,7 +61,7 @@ void RicNewWellPathFractureFeature::addFracture(RimWellPath* wellPath, double me
|
||||
RimWellPathFractureCollection* fractureCollection = wellPath->fractureCollection();
|
||||
CVF_ASSERT(fractureCollection);
|
||||
|
||||
if (fractureCollection->fractures().empty())
|
||||
if (fractureCollection->allFractures().empty())
|
||||
{
|
||||
RimEclipseView* activeView = dynamic_cast<RimEclipseView*>(RiaApplication::instance()->activeReservoirView());
|
||||
if (activeView)
|
||||
|
@ -131,7 +131,7 @@ bool RicDeleteSubItemsFeature::hasDeletableSubItems(caf::PdmUiItem* uiItem)
|
||||
|
||||
{
|
||||
auto collection = dynamic_cast<RimWellPathFractureCollection*>(uiItem);
|
||||
if (collection && !collection->fractures().empty())
|
||||
if (collection && !collection->allFractures().empty())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -135,7 +135,7 @@ void RivWellPathPartMgr::appendStaticFracturePartsToModel(cvf::ModelBasicList*
|
||||
|
||||
if (!isWellPathWithinBoundingBox(wellPathClipBoundingBox)) return;
|
||||
|
||||
for (RimWellPathFracture* f : m_rimWellPath->fractureCollection()->fractures())
|
||||
for (RimWellPathFracture* f : m_rimWellPath->fractureCollection()->activeFractures())
|
||||
{
|
||||
CVF_ASSERT(f);
|
||||
|
||||
|
@ -190,7 +190,7 @@ std::vector<RimFishbonesMultipleSubs*> RimFishbonesCollection::activeFishbonesSu
|
||||
|
||||
if (isChecked())
|
||||
{
|
||||
for (const auto& f : fishbonesSubs())
|
||||
for (const auto& f : allFishbonesSubs())
|
||||
{
|
||||
if (f->isActive())
|
||||
{
|
||||
@ -205,7 +205,7 @@ std::vector<RimFishbonesMultipleSubs*> RimFishbonesCollection::activeFishbonesSu
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimFishbonesMultipleSubs*> RimFishbonesCollection::fishbonesSubs() const
|
||||
std::vector<RimFishbonesMultipleSubs*> RimFishbonesCollection::allFishbonesSubs() const
|
||||
{
|
||||
return m_fishbonesSubs.childObjects();
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ public:
|
||||
const RimMswCompletionParameters* mswParameters() const;
|
||||
|
||||
std::vector<RimFishbonesMultipleSubs*> activeFishbonesSubs() const;
|
||||
std::vector<RimFishbonesMultipleSubs*> fishbonesSubs() const;
|
||||
std::vector<RimFishbonesMultipleSubs*> allFishbonesSubs() const;
|
||||
|
||||
void recalculateStartMD();
|
||||
double startMD() const;
|
||||
|
@ -170,12 +170,12 @@ RimWellPathFractureCollection* RimWellPathCompletions::fractureCollection() cons
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RimWellPathCompletions::hasCompletions() const
|
||||
{
|
||||
if (!fractureCollection()->fractures().empty())
|
||||
if (!fractureCollection()->allFractures().empty())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return !fishbonesCollection()->fishbonesSubs().empty() ||
|
||||
return !fishbonesCollection()->allFishbonesSubs().empty() ||
|
||||
!fishbonesCollection()->wellPathCollection()->wellPaths().empty() ||
|
||||
!perforationCollection()->perforations().empty();
|
||||
}
|
||||
@ -201,13 +201,13 @@ void RimWellPathCompletions::defineUiTreeOrdering(caf::PdmUiTreeOrdering& uiTree
|
||||
uiTreeOrdering.add(&m_perforationCollection);
|
||||
}
|
||||
|
||||
if (!fishbonesCollection()->fishbonesSubs().empty() ||
|
||||
if (!fishbonesCollection()->allFishbonesSubs().empty() ||
|
||||
!fishbonesCollection()->wellPathCollection()->wellPaths().empty())
|
||||
{
|
||||
uiTreeOrdering.add(&m_fishbonesCollection);
|
||||
}
|
||||
|
||||
if (!fractureCollection()->fractures().empty())
|
||||
if (!fractureCollection()->allFractures().empty())
|
||||
{
|
||||
uiTreeOrdering.add(&m_fractureCollection);
|
||||
}
|
||||
|
@ -120,7 +120,7 @@ double RimWellPathFractureCollection::manualReferenceMD() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimWellPathFracture*> RimWellPathFractureCollection::fractures() const
|
||||
std::vector<RimWellPathFracture*> RimWellPathFractureCollection::allFractures() const
|
||||
{
|
||||
return m_fractures.childObjects();
|
||||
}
|
||||
@ -134,7 +134,7 @@ std::vector<RimWellPathFracture*> RimWellPathFractureCollection::activeFractures
|
||||
|
||||
if (isChecked())
|
||||
{
|
||||
for (const auto& f : fractures())
|
||||
for (const auto& f : allFractures())
|
||||
{
|
||||
if (f->isChecked())
|
||||
{
|
||||
|
@ -56,15 +56,14 @@ public:
|
||||
ReferenceMDType referenceMDType() const;
|
||||
double manualReferenceMD() const;
|
||||
|
||||
std::vector<RimWellPathFracture*> fractures() const;
|
||||
std::vector<RimWellPathFracture*> allFractures() const;
|
||||
std::vector<RimWellPathFracture*> activeFractures() const;
|
||||
|
||||
protected:
|
||||
virtual void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering);
|
||||
private:
|
||||
void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) override;
|
||||
void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override;
|
||||
|
||||
private:
|
||||
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override;
|
||||
|
||||
caf::PdmChildArrayField<RimWellPathFracture*> m_fractures;
|
||||
caf::PdmField<ReferenceMDEnum> m_refMDType;
|
||||
caf::PdmField<double> m_refMD;
|
||||
|
Loading…
Reference in New Issue
Block a user