Add derived summary case (#5496)

* #5488 Derived Summary Case : Refactor ensemble summary case

- Refactor ensemble summary case to be able to us as standalone derived summary case
- rename to RimDerivedSummaryCase
- allow negative values in well disk visualization

* #5488 Derived Summary Case : Add feature to create derived case
* #5487 Well Disks : Add scaling factor
This commit is contained in:
Magne Sjaastad
2020-02-10 07:13:04 +01:00
committed by GitHub
parent 51991fd4c4
commit dfe6d0b94e
22 changed files with 558 additions and 152 deletions

View File

@@ -19,6 +19,7 @@
#pragma once
#include <string>
#include <vector>
class QString;
class QDateTime;
@@ -26,6 +27,7 @@ class QDateTime;
class RimSimWellInView;
class RimGridSummaryCase;
class RifSummaryReaderInterface;
class RimSummaryCase;
//==================================================================================================
///
@@ -34,8 +36,9 @@ class RifSummaryReaderInterface;
class RimSimWellInViewTools
{
public:
static RimGridSummaryCase* gridSummaryCaseForWell( RimSimWellInView* well );
static bool isInjector( RimSimWellInView* well );
static RimGridSummaryCase* gridSummaryCaseForWell( RimSimWellInView* well );
static std::vector<RimSummaryCase*> summaryCases();
static bool isInjector( RimSimWellInView* well );
static double extractValueForTimeStep( RifSummaryReaderInterface* summaryReader,
const QString& wellName,