2014-08-18 05:03:21 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2014-09-24 00:14:52 -05:00
|
|
|
// Copyright (C) Statoil ASA
|
|
|
|
// Copyright (C) Ceetron Solutions AS
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2014-08-18 05:03:21 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2014-08-18 05:03:21 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2014-08-18 05:03:21 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cvfCollection.h"
|
2017-11-16 03:50:48 -06:00
|
|
|
#include "cvfObject.h"
|
2014-08-18 05:03:21 -05:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class RigHistogramCalculator;
|
|
|
|
|
|
|
|
//==================================================================================================
|
2019-09-06 03:40:57 -05:00
|
|
|
///
|
2014-08-18 05:03:21 -05:00
|
|
|
//==================================================================================================
|
|
|
|
class RigStatisticsCalculator : public cvf::Object
|
|
|
|
{
|
|
|
|
public:
|
2019-09-06 03:40:57 -05:00
|
|
|
virtual void minMaxCellScalarValues( size_t timeStepIndex, double& min, double& max ) = 0;
|
|
|
|
virtual void posNegClosestToZero( size_t timeStepIndex, double& pos, double& neg ) = 0;
|
|
|
|
|
|
|
|
void meanCellScalarValue( double& meanValue );
|
|
|
|
void meanCellScalarValue( size_t timeStepIndex, double& meanValue );
|
2015-11-04 05:51:55 -06:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void valueSumAndSampleCount( double& valueSum, size_t& sampleCount );
|
|
|
|
virtual void valueSumAndSampleCount( size_t timeStepIndex, double& valueSum, size_t& sampleCount ) = 0;
|
2015-11-04 05:51:55 -06:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void addDataToHistogramCalculator( RigHistogramCalculator& histogramCalculator );
|
|
|
|
virtual void addDataToHistogramCalculator( size_t timeStepIndex, RigHistogramCalculator& histogramCalculator ) = 0;
|
2014-08-18 05:03:21 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
virtual void uniqueValues( size_t timeStepIndex, std::set<int>& values ) = 0;
|
2016-07-28 04:41:33 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
virtual size_t timeStepCount() = 0;
|
2015-12-09 02:36:05 -06:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void mobileVolumeWeightedMean( double& mean );
|
|
|
|
virtual void mobileVolumeWeightedMean( size_t timeStepIndex, double& mean );
|
2017-11-16 03:50:48 -06:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
static void posNegClosestToZero( const std::vector<double>& values, double& pos, double& neg );
|
2014-08-18 05:03:21 -05:00
|
|
|
};
|