mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 07:16:53 -06:00
130 lines
4.6 KiB
C++
130 lines
4.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017 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 <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "RimViewWindow.h"
|
|
|
|
#include "RigFlowDiagResults.h"
|
|
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPtrField.h"
|
|
|
|
#include <QPointer>
|
|
|
|
class RimFlowDiagSolution;
|
|
class RimEclipseResultCase;
|
|
class RimEclipseView;
|
|
|
|
class RiuFlowCharacteristicsPlot;
|
|
|
|
namespace caf
|
|
{
|
|
class PdmOptionItemInfo;
|
|
}
|
|
|
|
namespace cvf
|
|
{
|
|
class Color3f;
|
|
}
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RimFlowCharacteristicsPlot : public RimViewWindow
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
RimFlowCharacteristicsPlot();
|
|
~RimFlowCharacteristicsPlot() override;
|
|
|
|
int id() const final;
|
|
|
|
void setFromFlowSolution( RimFlowDiagSolution* flowSolution );
|
|
void updateCurrentTimeStep();
|
|
|
|
// RimViewWindow overrides
|
|
|
|
QWidget* viewWidget() override;
|
|
void zoomAll() override;
|
|
QWidget* createViewWidget( QWidget* mainWindowParent ) override;
|
|
void deleteViewWidget() override;
|
|
void viewGeometryUpdated();
|
|
|
|
QString curveDataAsText() const;
|
|
|
|
enum TimeSelectionType
|
|
{
|
|
ALL_AVAILABLE,
|
|
SELECTED,
|
|
};
|
|
|
|
void setTimeSteps( const std::vector<int>& timeSteps );
|
|
void setInjectorsAndProducers( const std::vector<QString>& injectors, const std::vector<QString>& producers );
|
|
void setMinimumCommunication( double minimumCommunication );
|
|
void setAquiferCellThreshold( double aquiferCellThreshold );
|
|
|
|
int fontSize() const override;
|
|
void updateFonts() override;
|
|
|
|
protected:
|
|
// RimViewWindow overrides
|
|
|
|
QImage snapshotWindowContent() override;
|
|
|
|
// Overridden PDM methods
|
|
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
|
|
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions,
|
|
bool* useOptionsOnly ) override;
|
|
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
void defineEditorAttribute( const caf::PdmFieldHandle* field,
|
|
QString uiConfigName,
|
|
caf::PdmUiEditorAttribute* attribute ) override;
|
|
void onLoadDataAndUpdate() override;
|
|
|
|
private:
|
|
void assignIdIfNecessary() final;
|
|
|
|
private:
|
|
caf::PdmPtrField<RimEclipseResultCase*> m_case;
|
|
caf::PdmPtrField<RimFlowDiagSolution*> m_flowDiagSolution;
|
|
caf::PdmField<caf::AppEnum<TimeSelectionType>> m_timeStepSelectionType;
|
|
caf::PdmField<std::vector<int>> m_selectedTimeSteps;
|
|
caf::PdmField<std::vector<int>> m_selectedTimeStepsUi;
|
|
caf::PdmField<bool> m_applyTimeSteps;
|
|
caf::PdmField<bool> m_showLegend;
|
|
caf::PdmField<double> m_maxPvFraction;
|
|
|
|
caf::PdmField<RigFlowDiagResults::CellFilterEnum> m_cellFilter;
|
|
caf::PdmPtrField<RimEclipseView*> m_cellFilterView;
|
|
caf::PdmField<QString> m_tracerFilter;
|
|
caf::PdmField<std::vector<QString>> m_selectedTracerNames;
|
|
caf::PdmField<bool> m_showRegion;
|
|
|
|
caf::PdmField<double> m_minCommunication;
|
|
caf::PdmField<int> m_maxTof;
|
|
|
|
std::vector<int> m_currentlyPlottedTimeSteps;
|
|
std::map<int, RigFlowDiagSolverInterface::FlowCharacteristicsResultFrame> m_timeStepToFlowResultMap;
|
|
|
|
QPointer<RiuFlowCharacteristicsPlot> m_flowCharPlotWidget;
|
|
};
|