mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-16 14:21:57 -06:00
Ignore NNCs with zero transmissibility during output.
This commit is contained in:
parent
5aa0399c67
commit
583741d5b1
@ -455,12 +455,10 @@ private:
|
||||
if ( candidate != end && candidate->cell1 == cc1
|
||||
&& candidate->cell2 == cc2) {
|
||||
t -= candidate->trans;
|
||||
if ( t != 0 )
|
||||
outputNnc.push_back({cc1, cc2, t});
|
||||
}
|
||||
else {
|
||||
|
||||
if ( t != 0 ) // eclipse definitely ignores NNCs with zero transmissibility (or is it < 1e-5?)
|
||||
outputNnc.push_back({cc1, cc2, t});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user