///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2018 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 "RiaDefines.h" #include "cafPdmField.h" #include "cafPdmObject.h" #include "cafPdmUiGroup.h" class RimMswCompletionParameters : public caf::PdmObject { CAF_PDM_HEADER_INIT; public: enum class ReferenceMDType { AUTO_REFERENCE_MD = 0, MANUAL_REFERENCE_MD }; enum class PressureDropType { HYDROSTATIC, HYDROSTATIC_FRICTION, HYDROSTATIC_FRICTION_ACCELERATION }; enum class LengthAndDepthType { ABS, INC }; using ReferenceMDEnum = caf::AppEnum; using PressureDropEnum = caf::AppEnum; using LengthAndDepthEnum = caf::AppEnum; RimMswCompletionParameters(); ~RimMswCompletionParameters() override; bool isDefault() const; RimMswCompletionParameters& operator=( const RimMswCompletionParameters& rhs ); ReferenceMDType referenceMDType() const; double manualReferenceMD() const; double linerDiameter( RiaDefines::EclipseUnitSystem unitSystem ) const; static double defaultLinerDiameter( RiaDefines::EclipseUnitSystem unitSystem ); double roughnessFactor( RiaDefines::EclipseUnitSystem unitSystem ) const; static double defaultRoughnessFactor( RiaDefines::EclipseUnitSystem unitSystem ); PressureDropEnum pressureDrop() const; LengthAndDepthEnum lengthAndDepth() const; double maxSegmentLength() const; void setReferenceMDType( ReferenceMDType refType ); void setManualReferenceMD( double manualRefMD ); void setLinerDiameter( double diameter ); void setRoughnessFactor( double roughnessFactor ); void setPressureDrop( PressureDropType pressureDropType ); void setLengthAndDepth( LengthAndDepthType lengthAndDepthType ); void setUnitSystemSpecificDefaults(); void updateFromTopLevelWell( const RimMswCompletionParameters* topLevelWellParameters ); void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override; protected: void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override; void initAfterRead() override; private: caf::PdmField m_refMDType; caf::PdmField m_refMD; caf::PdmField m_customValuesForLateral; caf::PdmField m_linerDiameter; caf::PdmField m_roughnessFactor; caf::PdmField m_pressureDrop; caf::PdmField m_lengthAndDepth; caf::PdmField m_enforceMaxSegmentLength; caf::PdmField m_maxSegmentLength; };