mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-09 23:16:00 -06:00
#1787 Adding functions returning calculated number of flooded pore volumes
This commit is contained in:
parent
dc41644452
commit
71cd963945
@ -119,6 +119,23 @@ RigNumberOfFloodedPoreVolumesCalculator::RigNumberOfFloodedPoreVolumesCalculator
|
||||
}
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<std::vector<double>> RigNumberOfFloodedPoreVolumesCalculator::numberOfFloodedPorevolumes()
|
||||
{
|
||||
return m_cumWinflowPVAllTimeSteps;
|
||||
}
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<double> RigNumberOfFloodedPoreVolumesCalculator::numberOfFloodedPorevolumesAtTimeStep(size_t timeStep)
|
||||
{
|
||||
return m_cumWinflowPVAllTimeSteps[timeStep];
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
@ -39,6 +39,8 @@ public:
|
||||
std::vector<std::string> tracerNames
|
||||
);
|
||||
|
||||
std::vector<std::vector<double>> numberOfFloodedPorevolumes();
|
||||
std::vector<double> numberOfFloodedPorevolumesAtTimeStep(size_t timeStep);
|
||||
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user