mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Whitespace changes
This commit is contained in:
@@ -54,7 +54,7 @@ private:
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimCalculatedSummaryCase::RimCalculatedSummaryCase()
|
||||
{
|
||||
CAF_PDM_InitObject("Calculated Summary Case",":/SummaryCase48x48.png","","");
|
||||
CAF_PDM_InitObject("Calculated",":/SummaryCase48x48.png","","");
|
||||
|
||||
m_calculatedCurveReader = nullptr;
|
||||
}
|
||||
@@ -71,7 +71,7 @@ RimCalculatedSummaryCase::~RimCalculatedSummaryCase()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RimCalculatedSummaryCase::caseName()
|
||||
{
|
||||
return "Calculated Summary Case";
|
||||
return "Calculated";
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -559,7 +559,10 @@ void RigAccWellFlowCalculator::addDownStreamBranchFlow(std::vector<double> *accF
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RigAccWellFlowCalculator::storeFlowOnDepth(BranchFlow* branchFlow, double depthValue, const std::vector<double>& accFlowPrTracer, const std::vector<double>& flowPrTracer)
|
||||
void RigAccWellFlowCalculator::storeFlowOnDepth(BranchFlow* branchFlow,
|
||||
double depthValue,
|
||||
const std::vector<double>& accFlowPrTracer,
|
||||
const std::vector<double>& flowPrTracer)
|
||||
{
|
||||
size_t tracerIdx = 0;
|
||||
for ( const auto & tracerName: m_tracerNames )
|
||||
@@ -575,7 +578,11 @@ void RigAccWellFlowCalculator::storeFlowOnDepth(BranchFlow* branchFlow, double d
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RigAccWellFlowCalculator::storeFlowOnDepthWTvd(BranchFlow *branchFlow, double depthValue, double trueVerticalDepth, const std::vector<double>& accFlowPrTracer, const std::vector<double>& flowPrTracer)
|
||||
void RigAccWellFlowCalculator::storeFlowOnDepthWTvd(BranchFlow *branchFlow,
|
||||
double depthValue,
|
||||
double trueVerticalDepth,
|
||||
const std::vector<double>& accFlowPrTracer,
|
||||
const std::vector<double>& flowPrTracer)
|
||||
{
|
||||
size_t tracerIdx = 0;
|
||||
for ( const auto & tracerName: m_tracerNames )
|
||||
|
||||
@@ -266,7 +266,7 @@ void RigNumberOfFloodedPoreVolumesCalculator::calculate(RigMainGrid* mainGrid,
|
||||
for (size_t cellResultIndex = 0; cellResultIndex < resultCellCount; cellResultIndex++)
|
||||
{
|
||||
CellQwIn[cellResultIndex] = cellQwInAtAllTimeSteps[timeStep - 1][cellResultIndex]
|
||||
+ (totoalFlowrateIntoCell[cellResultIndex]) * deltaT;
|
||||
+ (totoalFlowrateIntoCell[cellResultIndex]) * deltaT;
|
||||
}
|
||||
cellQwInAtAllTimeSteps.push_back(CellQwIn);
|
||||
|
||||
@@ -291,7 +291,7 @@ void RigNumberOfFloodedPoreVolumesCalculator::calculate(RigMainGrid* mainGrid,
|
||||
}
|
||||
|
||||
cumWinflowPV[cellResultIndex] = cellQwInAtAllTimeSteps[timeStep][cellResultIndex]
|
||||
/ scaledPoreVolume;
|
||||
/ scaledPoreVolume;
|
||||
}
|
||||
m_cumWinflowPVAllTimeSteps.push_back(cumWinflowPV);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user