mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-09 23:53:04 -06:00
#1807 Adjust tracer communication in flow characteristics plot to include cells with 0-value
This commit is contained in:
parent
f4ca6395cd
commit
dbee70b222
@ -734,7 +734,7 @@ RigFlowDiagSolverInterface::FlowCharacteristicsResultFrame RigFlowDiagResults::f
|
||||
|
||||
for (size_t i = 0; i < communicationResult->size(); ++i)
|
||||
{
|
||||
if (communicationResult->at(i) != HUGE_VAL && communicationResult->at(i) > 0)
|
||||
if (communicationResult->at(i) != HUGE_VAL && communicationResult->at(i) >= 0)
|
||||
{
|
||||
selectedCellIndices.push_back(i);
|
||||
if (allInjectorResults != nullptr) injectorResults.push_back(allInjectorResults->at(i));
|
||||
|
Loading…
Reference in New Issue
Block a user