mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 05:37:21 -05:00
Soil calculation: Keep trying next time steps.
This commit is contained in:
+2
-2
@@ -130,8 +130,8 @@ void RigPorvSoilSgasResultCalculator::calculate( const RigEclipseResultAddress&
|
||||
bool res1ActiveOnly = in1Results.size() == activeCellCount;
|
||||
bool res2ActiveOnly = in2Results.size() == activeCellCount;
|
||||
|
||||
if ( ( !res1ActiveOnly ) && ( in1Results.size() != totalCellCount ) ) return;
|
||||
if ( ( !res2ActiveOnly ) && ( in2Results.size() != totalCellCount ) ) return;
|
||||
if ( ( !res1ActiveOnly ) && ( in1Results.size() != totalCellCount ) ) continue;
|
||||
if ( ( !res2ActiveOnly ) && ( in2Results.size() != totalCellCount ) ) continue;
|
||||
|
||||
#pragma omp parallel for
|
||||
for ( int nativeResvCellIndex = 0; nativeResvCellIndex < static_cast<int>( totalCellCount ); nativeResvCellIndex++ )
|
||||
|
||||
Reference in New Issue
Block a user