///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2021- Equinor 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. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "cafPdmField.h" #include "cafPdmObjectHandle.h" #include "cafPdmObjectMethod.h" #include "cafPdmPtrField.h" #include class RimStimPlanFractureTemplate; class RimThermalFractureTemplate; class RimEclipseCase; //================================================================================================== /// //================================================================================================== class RimcWellPath_addFracture : public caf::PdmObjectMethod { CAF_PDM_HEADER_INIT; public: RimcWellPath_addFracture( caf::PdmObjectHandle* self ); caf::PdmObjectHandle* execute() override; bool resultIsPersistent() const override; std::unique_ptr defaultResult() const override; private: caf::PdmField m_md; caf::PdmPtrField m_stimPlanFractureTemplate; caf::PdmField m_alignDip; caf::PdmPtrField m_eclipseCase; }; //================================================================================================== /// //================================================================================================== class RimcWellPath_addThermalFracture : public caf::PdmObjectMethod { CAF_PDM_HEADER_INIT; public: RimcWellPath_addThermalFracture( caf::PdmObjectHandle* self ); caf::PdmObjectHandle* execute() override; bool resultIsPersistent() const override; std::unique_ptr defaultResult() const override; private: caf::PdmPtrField m_fractureTemplate; caf::PdmField m_md; caf::PdmField m_placeUsingTemplateData; }; //================================================================================================== /// //================================================================================================== class RimcWellPath_appendPerforationInterval : public caf::PdmObjectMethod { CAF_PDM_HEADER_INIT; public: RimcWellPath_appendPerforationInterval( caf::PdmObjectHandle* self ); caf::PdmObjectHandle* execute() override; bool resultIsPersistent() const override; std::unique_ptr defaultResult() const override; private: caf::PdmField m_startMD; caf::PdmField m_endMD; caf::PdmField m_diameter; caf::PdmField m_skinFactor; };