mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
73 lines
2.7 KiB
C++
73 lines
2.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2023- 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
|
|
|
|
#include "RiaDateTimeDefines.h"
|
|
#include "RiaDefines.h"
|
|
|
|
#include "RifSummaryReaderInterface.h"
|
|
|
|
#include "RimSummaryCase.h"
|
|
|
|
class RifEclipseSummaryAddress;
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
class RimEnsembleCrossPlotStatisticsCase : public RimSummaryCase, public RifSummaryReaderInterface
|
|
{
|
|
public:
|
|
void calculate( const std::vector<RimSummaryCase*>& sumCases,
|
|
const RifEclipseSummaryAddress& inputAddressX,
|
|
const RifEclipseSummaryAddress& inputAddressY,
|
|
bool includeIncompleteCurves,
|
|
int binCount,
|
|
int realizationCountThreshold );
|
|
|
|
bool hasP10Data() const;
|
|
bool hasP50Data() const;
|
|
bool hasP90Data() const;
|
|
bool hasMeanData() const;
|
|
|
|
QString caseName() const override;
|
|
void createSummaryReaderInterface() override;
|
|
RifSummaryReaderInterface* summaryReader() override;
|
|
RiaDefines::EclipseUnitSystem unitSystem() const override;
|
|
|
|
std::vector<time_t> timeSteps( const RifEclipseSummaryAddress& resultAddress ) const override;
|
|
std::pair<bool, std::vector<double>> values( const RifEclipseSummaryAddress& resultAddress ) const override;
|
|
std::string unitName( const RifEclipseSummaryAddress& resultAddress ) const override;
|
|
|
|
private:
|
|
void clearData();
|
|
|
|
private:
|
|
std::vector<double> m_p10Data;
|
|
std::vector<double> m_p50Data;
|
|
std::vector<double> m_p90Data;
|
|
std::vector<double> m_meanData;
|
|
|
|
RifEclipseSummaryAddress m_adrX;
|
|
RifEclipseSummaryAddress m_adrY;
|
|
|
|
std::vector<double> m_binnedXValues;
|
|
|
|
caf::PdmPointer<RimSummaryCase> m_firstSummaryCase;
|
|
};
|