ResInsight/ApplicationLibCode/UserInterface/RiuResultTextBuilder.h
Magne Sjaastad e7c864c6d8
Improve grid cell calculator
* Use full name for grid case view
* FIx signed / unsigned issue
* Support drag/drop of file names into Main Window
* Add function to check if two grid cases are of equal size
* Result Info: Show cell result text for all linked views
* Improve how to specify cells to be included in calculation

- move view filter to calculation
- improve how to assign values to non-visible cells
- avoid computation between grids of different size

Closes #9482
2022-11-17 15:51:01 +01:00

110 lines
3.8 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) Statoil ASA
// Copyright (C) Ceetron Solutions 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 "cafPdmPointer.h"
#include "cvfStructGrid.h"
#include <map>
class RimEclipseView;
class RimEclipseCellColors;
class Rim2dIntersectionView;
class RigEclipseCaseData;
class RimEclipseResultDefinition;
class RimGridView;
class QString;
namespace cvf
{
class Part;
}
//==================================================================================================
//
//
//==================================================================================================
class RiuResultTextBuilder
{
public:
RiuResultTextBuilder( RimGridView* settingsView,
RimEclipseResultDefinition* eclResDef,
size_t gridIndex,
size_t cellIndex,
size_t timeStepIndex );
RiuResultTextBuilder( RimGridView* settingsView,
RimEclipseResultDefinition* eclResDef,
size_t reservoirCellIndex,
size_t timeStepIndex );
void setFace( cvf::StructGridInterface::FaceType face );
void setNncIndex( size_t nncIndex );
void setIntersectionPointInDisplay( cvf::Vec3d intersectionPointInDisplay );
void set2dIntersectionView( Rim2dIntersectionView* intersectionView );
QString mainResultText();
QString geometrySelectionText( QString itemSeparator );
private:
void appendDetails( QString& text, const QString& details );
QString gridResultDetails();
QString faultResultDetails();
QString formationDetails();
QString cellEdgeResultDetails();
QString nncDetails();
QString gridResultText();
QString faultResultText();
QString nncResultText();
QString wellResultText();
QString cellResultText( const std::vector<RimEclipseResultDefinition*>& resultDefinitions, bool appendCaseName = false );
std::map<QString, QString> cellResultTextAndValueText( RimEclipseResultDefinition* resultDefinition );
void appendTextFromResultColors( RigEclipseCaseData* eclipseCase,
size_t gridIndex,
size_t cellIndex,
size_t timeStepIndex,
RimEclipseResultDefinition* resultColors,
QString* resultInfoText );
std::pair<bool, QStringList> resultTextFromLinkedViews() const;
private:
caf::PdmPointer<RimGridView> m_displayCoordView;
caf::PdmPointer<RimEclipseView> m_eclipseView;
caf::PdmPointer<RimEclipseResultDefinition> m_eclResDef;
caf::PdmPointer<Rim2dIntersectionView> m_2dIntersectionView;
size_t m_gridIndex;
size_t m_cellIndex;
size_t m_timeStepIndex;
cvf::StructGridInterface::FaceType m_face;
size_t m_nncIndex;
cvf::Vec3d m_intersectionPointInDisplay;
};