mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Rename ApplicationCode to ApplicationLibCode
This commit is contained in:
217
ApplicationLibCode/ProjectDataModel/RimSimWellInViewCollection.h
Normal file
217
ApplicationLibCode/ProjectDataModel/RimSimWellInViewCollection.h
Normal file
@@ -0,0 +1,217 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2011- Statoil ASA
|
||||
// Copyright (C) 2013- Ceetron Solutions AS
|
||||
// Copyright (C) 2011-2012 Ceetron AS
|
||||
//
|
||||
// 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
|
||||
|
||||
#include "cafAppEnum.h"
|
||||
#include "cafPdmChildArrayField.h"
|
||||
#include "cafPdmField.h"
|
||||
#include "cafPdmFieldCvfColor.h" // Include to make Pdm work for cvf::Color
|
||||
#include "cafPdmObject.h"
|
||||
#include "cafPdmPointer.h"
|
||||
#include "cafPdmPtrField.h"
|
||||
#include "cafTristate.h"
|
||||
|
||||
class RimEclipseView;
|
||||
class RimSimWellInView;
|
||||
class RimWellDiskConfig;
|
||||
class RimSummaryCase;
|
||||
|
||||
//==================================================================================================
|
||||
///
|
||||
///
|
||||
//==================================================================================================
|
||||
class RimSimWellInViewCollection : public caf::PdmObject
|
||||
{
|
||||
CAF_PDM_HEADER_INIT;
|
||||
|
||||
public:
|
||||
RimSimWellInViewCollection();
|
||||
~RimSimWellInViewCollection() override;
|
||||
|
||||
void setReservoirView( RimEclipseView* ownerReservoirView );
|
||||
|
||||
enum WellVisibilityType
|
||||
{
|
||||
PIPES_FORCE_ALL_OFF,
|
||||
PIPES_INDIVIDUALLY,
|
||||
PIPES_OPEN_IN_VISIBLE_CELLS,
|
||||
PIPES_FORCE_ALL_ON
|
||||
};
|
||||
typedef caf::AppEnum<RimSimWellInViewCollection::WellVisibilityType> WellVisibilityEnum;
|
||||
|
||||
enum WellCellsRangeFilterType
|
||||
{
|
||||
RANGE_ADD_ALL,
|
||||
RANGE_ADD_INDIVIDUAL,
|
||||
RANGE_ADD_NONE
|
||||
};
|
||||
typedef caf::AppEnum<RimSimWellInViewCollection::WellCellsRangeFilterType> WellCellsRangeFilterEnum;
|
||||
|
||||
enum WellFenceType
|
||||
{
|
||||
K_DIRECTION,
|
||||
J_DIRECTION,
|
||||
I_DIRECTION
|
||||
};
|
||||
typedef caf::AppEnum<RimSimWellInViewCollection::WellFenceType> WellFenceEnum;
|
||||
|
||||
enum WellHeadPositionType
|
||||
{
|
||||
WELLHEAD_POS_ACTIVE_CELLS_BB,
|
||||
WELLHEAD_POS_TOP_COLUMN
|
||||
};
|
||||
typedef caf::AppEnum<RimSimWellInViewCollection::WellHeadPositionType> WellHeadPositionEnum;
|
||||
|
||||
enum WellPipeCoordType
|
||||
{
|
||||
WELLPIPE_CELLCENTER,
|
||||
WELLPIPE_INTERPOLATED
|
||||
};
|
||||
|
||||
typedef caf::AppEnum<RimSimWellInViewCollection::WellPipeCoordType> WellPipeCoordEnum;
|
||||
|
||||
enum WellPipeColors
|
||||
{
|
||||
WELLPIPE_COLOR_UNIQUE,
|
||||
WELLPIPE_COLOR_UNIFORM
|
||||
};
|
||||
|
||||
enum WellDiskPropertyType
|
||||
{
|
||||
PROPERTY_TYPE_PREDEFINED,
|
||||
PROPERTY_TYPE_SINGLE
|
||||
};
|
||||
|
||||
enum WellDiskPropertyConfigType
|
||||
{
|
||||
PRODUCTION_RATES,
|
||||
INJECTION_RATES,
|
||||
CUMULATIVE_PRODUCTION_RATES,
|
||||
CUMULATIVE_INJECTION_RATES,
|
||||
PRODUCTION_INJECTION_RATES,
|
||||
CUMULATIVE_PRODUCTION_INJECTION_RATES
|
||||
};
|
||||
|
||||
typedef caf::AppEnum<RimSimWellInViewCollection::WellPipeColors> WellPipeColorsEnum;
|
||||
|
||||
caf::PdmField<bool> isActive;
|
||||
caf::PdmField<bool> showWellsIntersectingVisibleCells;
|
||||
|
||||
caf::PdmField<double> wellHeadScaleFactor;
|
||||
caf::PdmField<double> pipeScaleFactor;
|
||||
caf::PdmField<double> spheresScaleFactor;
|
||||
|
||||
caf::PdmField<cvf::Color3f> wellLabelColor;
|
||||
caf::PdmField<bool> showConnectionStatusColors;
|
||||
|
||||
void setShowWellCellsState( bool enable );
|
||||
bool showWellCells();
|
||||
|
||||
bool showWellCommunicationLines() { return m_showWellCommunicationLines(); }
|
||||
|
||||
caf::PdmField<WellFenceEnum> wellCellFenceType;
|
||||
caf::PdmField<double> wellCellTransparencyLevel;
|
||||
|
||||
caf::PdmField<int> pipeCrossSectionVertexCount;
|
||||
caf::PdmField<WellPipeCoordEnum> wellPipeCoordType;
|
||||
|
||||
caf::PdmField<WellHeadPositionEnum> wellHeadPosition;
|
||||
|
||||
caf::PdmField<bool> isAutoDetectingBranches;
|
||||
|
||||
QString wellDiskPropertyUiText() const;
|
||||
bool isWellDisksVisible() const;
|
||||
bool showWellDiskLabelBackground() const;
|
||||
bool showWellDiskQuantityLables() const;
|
||||
|
||||
caf::PdmChildArrayField<RimSimWellInView*> wells;
|
||||
|
||||
RimSimWellInView* findWell( QString name );
|
||||
bool hasVisibleWellCells();
|
||||
bool hasVisibleWellPipes();
|
||||
void sortWellsByName();
|
||||
|
||||
const std::vector<cvf::ubyte>& resultWellGeometryVisibilities( size_t frameIndex );
|
||||
void scheduleIsWellPipesVisibleRecalculation();
|
||||
void updateStateForVisibilityCheckboxes();
|
||||
|
||||
void assignDefaultWellColors();
|
||||
|
||||
static void updateWellAllocationPlots();
|
||||
|
||||
void setDefaultSourceCaseForWellDisks();
|
||||
void scaleWellDisks();
|
||||
double wellDiskScaleFactor() const;
|
||||
|
||||
caf::PdmField<cvf::Color3f> wellDiskColor;
|
||||
|
||||
protected:
|
||||
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
|
||||
|
||||
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
||||
|
||||
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions,
|
||||
bool* useOptionsOnly ) override;
|
||||
|
||||
caf::PdmFieldHandle* objectToggleField() override;
|
||||
void initAfterRead() override;
|
||||
|
||||
private:
|
||||
void calculateWellGeometryVisibility( size_t frameIndex );
|
||||
void updateStateFromEnabledChildCount( size_t showLabelCount, caf::PdmField<caf::Tristate>* fieldToUpdate );
|
||||
void scaleWellDisksFromConfig( const RimWellDiskConfig& wellDiskConfig );
|
||||
RimWellDiskConfig getActiveWellDiskConfig() const;
|
||||
|
||||
private:
|
||||
RimEclipseView* m_reservoirView;
|
||||
std::vector<std::vector<cvf::ubyte>> m_framesOfResultWellPipeVisibilities;
|
||||
|
||||
// Fields
|
||||
caf::PdmField<cvf::Color3f> m_defaultWellPipeColor;
|
||||
caf::PdmField<WellPipeColorsEnum> m_wellPipeColors;
|
||||
|
||||
caf::PdmField<caf::Tristate> m_showWellLabel;
|
||||
caf::PdmField<caf::Tristate> m_showWellHead;
|
||||
caf::PdmField<caf::Tristate> m_showWellPipe;
|
||||
caf::PdmField<caf::Tristate> m_showWellSpheres;
|
||||
caf::PdmField<caf::Tristate> m_showWellDisks;
|
||||
caf::PdmField<caf::Tristate> m_showWellCells;
|
||||
caf::PdmField<caf::Tristate> m_showWellCellFence;
|
||||
|
||||
caf::PdmField<bool> m_showWellCommunicationLines;
|
||||
|
||||
// Well Discs
|
||||
caf::PdmField<caf::AppEnum<WellDiskPropertyType>> m_wellDiskPropertyType;
|
||||
caf::PdmField<caf::AppEnum<WellDiskPropertyConfigType>> m_wellDiskPropertyConfigType;
|
||||
caf::PdmPtrField<RimSummaryCase*> m_wellDiskSummaryCase;
|
||||
caf::PdmField<QString> m_wellDiskQuantity;
|
||||
caf::PdmField<bool> m_wellDiskShowQuantityLabels;
|
||||
caf::PdmField<bool> m_wellDiskshowLabelsBackground;
|
||||
caf::PdmField<double> m_wellDiskScaleFactor;
|
||||
|
||||
// Obsolete fields
|
||||
caf::PdmField<WellVisibilityEnum> obsoleteField_wellPipeVisibility;
|
||||
caf::PdmField<WellCellsRangeFilterEnum> obsoleteField_wellCellsToRangeFilterMode;
|
||||
|
||||
caf::PdmField<bool> obsoleteField_showWellLabel;
|
||||
caf::PdmField<bool> obsoleteField_showWellHead;
|
||||
caf::PdmField<bool> obsoleteField_showWellCellFence;
|
||||
};
|
||||
Reference in New Issue
Block a user