mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
[bugfix] Use NNC data with applied EDITNCC for transmissibility.
Unfortunately, we first created NNC with applied EDITNNC and then still used the original NNC data to set the transmissibility. Thus we were actually ignoring EDITNNC. This commit fixes this by using the data structure that has EDITNNC applied.
This commit is contained in:
parent
75e8508e3b
commit
184be292ea
@ -663,7 +663,7 @@ private:
|
||||
candidate = firstCandidate;
|
||||
}
|
||||
|
||||
for (const auto& nncEntry : nnc.nncdata()) {
|
||||
for (const auto& nncEntry : nncData) {
|
||||
auto c1 = nncEntry.cell1;
|
||||
auto c2 = nncEntry.cell2;
|
||||
auto low = cartesianToCompressed[c1];
|
||||
|
Loading…
Reference in New Issue
Block a user