2018-10-10 04:10:56 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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 <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
|
2018-11-28 05:03:56 -06:00
|
|
|
#include "RiaEclipseUnitTools.h"
|
|
|
|
|
2018-10-10 04:10:56 -05:00
|
|
|
#include "RimCheckableNamedObject.h"
|
2018-12-05 05:52:36 -06:00
|
|
|
#include "RimWellPathAicdParameters.h"
|
2018-10-10 04:10:56 -05:00
|
|
|
#include "RimWellPathComponentInterface.h"
|
|
|
|
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
|
|
|
|
#include "cafAppEnum.h"
|
2018-10-19 07:44:17 -05:00
|
|
|
#include "cafPdmChildField.h"
|
2018-10-10 04:10:56 -05:00
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
|
|
|
|
2018-10-19 07:44:17 -05:00
|
|
|
class RimMultipleValveLocations;
|
2018-10-10 04:10:56 -05:00
|
|
|
class RimWellPath;
|
|
|
|
|
|
|
|
class RimWellPathValve : public RimCheckableNamedObject, public RimWellPathComponentInterface
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
|
|
typedef caf::AppEnum<RiaDefines::WellPathComponentType> CompletionTypeEnum;
|
|
|
|
|
|
|
|
RimWellPathValve();
|
2018-10-18 12:45:57 -05:00
|
|
|
~RimWellPathValve() override;
|
2018-10-10 04:10:56 -05:00
|
|
|
|
2018-10-19 07:44:17 -05:00
|
|
|
void setMeasuredDepthAndCount(double startMD, double spacing, int valveCount);
|
2018-12-07 05:56:32 -06:00
|
|
|
void multipleValveGeometryUpdated();
|
2018-10-19 07:44:17 -05:00
|
|
|
std::vector<double> valveLocations() const;
|
2018-11-28 05:03:56 -06:00
|
|
|
double orificeDiameter(RiaEclipseUnitTools::UnitSystem unitSystem) const;
|
|
|
|
double flowCoefficient() const;
|
|
|
|
void setUnitSpecificDefaults();
|
|
|
|
|
|
|
|
static double convertOrificeDiameter(double orificeDiameterUi,
|
|
|
|
RiaEclipseUnitTools::UnitSystem wellPathUnitSystem,
|
|
|
|
RiaEclipseUnitTools::UnitSystem wantedUnitSystem);
|
2018-10-10 04:10:56 -05:00
|
|
|
|
2018-12-03 08:37:50 -06:00
|
|
|
std::vector<std::pair<double, double>> valveSegments() const;
|
2018-11-29 08:20:36 -06:00
|
|
|
|
|
|
|
|
2018-10-10 04:10:56 -05:00
|
|
|
// Overrides from RimWellPathCompletionInterface
|
2018-11-22 05:57:11 -06:00
|
|
|
bool isEnabled() const override;
|
2018-10-10 04:10:56 -05:00
|
|
|
RiaDefines::WellPathComponentType componentType() const override;
|
2018-10-10 09:57:43 -05:00
|
|
|
QString componentLabel() const override;
|
|
|
|
QString componentTypeLabel() const override;
|
|
|
|
cvf::Color3f defaultComponentColor() const override;
|
2018-10-10 04:10:56 -05:00
|
|
|
double startMD() const override;
|
|
|
|
double endMD() const override;
|
2018-11-28 05:03:56 -06:00
|
|
|
|
2018-10-10 04:10:56 -05:00
|
|
|
private:
|
2018-10-18 12:45:57 -05:00
|
|
|
QList<caf::PdmOptionItemInfo> calculateValueOptions(const caf::PdmFieldHandle* fieldNeedingOptions, bool* useOptionsOnly) override;
|
|
|
|
void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override;
|
|
|
|
void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) override;
|
|
|
|
void defineEditorAttribute(const caf::PdmFieldHandle* field, QString uiConfigName, caf::PdmUiEditorAttribute* attribute) override;
|
|
|
|
void defineUiTreeOrdering(caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName = "") override;
|
2018-10-10 04:10:56 -05:00
|
|
|
|
|
|
|
private:
|
2018-10-19 07:44:17 -05:00
|
|
|
caf::PdmField<CompletionTypeEnum> m_type;
|
|
|
|
caf::PdmField<double> m_measuredDepth;
|
|
|
|
caf::PdmChildField<RimMultipleValveLocations*> m_multipleValveLocations;
|
2018-10-10 04:10:56 -05:00
|
|
|
|
2018-11-28 05:03:56 -06:00
|
|
|
// ICD and ICVs only
|
|
|
|
caf::PdmField<double> m_orificeDiameter;
|
|
|
|
caf::PdmField<double> m_flowCoefficient;
|
|
|
|
|
2018-12-05 05:52:36 -06:00
|
|
|
caf::PdmChildField<RimWellPathAicdParameters*> m_aicdParameters;
|
2018-10-10 04:10:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|