///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2016- Statoil ASA // // ResInsight is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU General Public License at // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RimWellPathFractureCollection.h" #include "RimProject.h" #include "RimWellPathFracture.h" #include "cafPdmObject.h" CAF_PDM_SOURCE_INIT(RimWellPathFractureCollection, "WellPathFractureCollection"); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimWellPathFractureCollection::RimWellPathFractureCollection(void) { CAF_PDM_InitObject("Fractures", ":/FractureLayout16x16.png", "", ""); CAF_PDM_InitFieldNoDefault(&m_fractures, "Fractures", "", "", "", ""); m_fractures.uiCapability()->setUiHidden(true); setName("Fractures"); nameField()->uiCapability()->setUiHidden(true); CAF_PDM_InitFieldNoDefault(&m_mswParameters, "MswParameters", "Multi Segment Well Parameters", "", "", ""); m_mswParameters = new RimMswCompletionParameters; m_mswParameters.uiCapability()->setUiTreeHidden(true); m_mswParameters.uiCapability()->setUiTreeChildrenHidden(true); CAF_PDM_InitField(&m_refMDType_OBSOLETE, "RefMDType", std::numeric_limits::max(), "Reference MD", "", "", ""); CAF_PDM_InitField(&m_refMD_OBSOLETE, "RefMD", std::numeric_limits::infinity(), "", "", "", ""); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RimWellPathFractureCollection::~RimWellPathFractureCollection() { } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- const RimMswCompletionParameters* RimWellPathFractureCollection::mswParameters() const { return m_mswParameters; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimWellPathFractureCollection::addFracture(RimWellPathFracture* fracture) { m_fractures.push_back(fracture); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimWellPathFractureCollection::deleteFractures() { m_fractures.deleteAllChildObjects(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimWellPathFractureCollection::setUnitSystemSpecificDefaults() { m_mswParameters->setUnitSystemSpecificDefaults(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- std::vector RimWellPathFractureCollection::allFractures() const { return m_fractures.childObjects(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- std::vector RimWellPathFractureCollection::activeFractures() const { std::vector active; if (isChecked()) { for (const auto& f : allFractures()) { if (f->isChecked()) { active.push_back(f); } } } return active; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimWellPathFractureCollection::defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) { caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Options"); m_mswParameters->uiOrdering(uiConfigName, *mswGroup); uiOrdering.skipRemainingFields(true); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimWellPathFractureCollection::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) { RimProject* proj; this->firstAncestorOrThisOfTypeAsserted(proj); if (changedField == &m_isChecked) { proj->reloadCompletionTypeResultsInAllViews(); } else { proj->scheduleCreateDisplayModelAndRedrawAllViews(); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RimWellPathFractureCollection::initAfterRead() { if (m_refMDType_OBSOLETE() != std::numeric_limits::max()) { m_mswParameters->setReferenceMDType((RimMswCompletionParameters::ReferenceMDType) m_refMDType_OBSOLETE()); } if (m_refMD_OBSOLETE() != std::numeric_limits::infinity()) { m_mswParameters->setManualReferenceMD(m_refMD_OBSOLETE()); } }