mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-26 00:06:49 -06:00
e2a5c449ce
Display Cell result, Fault result, NNC result, and Cell edge result as a section with a linefeed above Always show value for intersection point at top with details below.
81 lines
2.3 KiB
C++
81 lines
2.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011-2012 Statoil ASA, 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 "cvfBase.h"
|
|
#include "cafPdmPointer.h"
|
|
#include "cvfStructGrid.h"
|
|
|
|
|
|
class RimReservoirView;
|
|
class RimResultSlot;
|
|
class QString;
|
|
class RigCaseData;
|
|
|
|
namespace cvf {
|
|
class Part;
|
|
}
|
|
|
|
//==================================================================================================
|
|
//
|
|
//
|
|
//==================================================================================================
|
|
class RiuResultTextBuilder
|
|
{
|
|
public:
|
|
RiuResultTextBuilder(RimReservoirView* reservoirView, size_t gridIndex, size_t cellIndex, size_t timeStepIndex);
|
|
void setFace(cvf::StructGridInterface::FaceType face);
|
|
void setNncIndex(size_t nncIndex);
|
|
void setIntersectionPoint(cvf::Vec3d intersectionPoint);
|
|
|
|
QString mainResultText();
|
|
|
|
QString topologyText(QString itemSeparator);
|
|
|
|
private:
|
|
void appendDetails(QString& text, const QString& details);
|
|
|
|
QString gridResultDetails();
|
|
QString faultResultDetails();
|
|
QString cellEdgeResultDetails();
|
|
QString nncDetails();
|
|
|
|
QString gridResultText();
|
|
QString faultResultText();
|
|
QString nncResultText();
|
|
QString wellResultText();
|
|
|
|
QString cellResultText(RimResultSlot* resultSlot);
|
|
|
|
void appendTextFromResultSlot(RigCaseData* eclipseCase, size_t gridIndex, size_t cellIndex, size_t timeStepIndex, RimResultSlot* resultSlot, QString* resultInfoText);
|
|
|
|
private:
|
|
caf::PdmPointer<RimReservoirView> m_reservoirView;
|
|
|
|
size_t m_gridIndex;
|
|
size_t m_cellIndex;
|
|
size_t m_timeStepIndex;
|
|
|
|
cvf::StructGridInterface::FaceType m_face;
|
|
|
|
size_t m_nncIndex;
|
|
|
|
cvf::Vec3d m_intersectionPoint;
|
|
};
|