mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixed issue with missing well pipe geometry
p4#: 22151
This commit is contained in:
parent
8c128aeb6e
commit
89c67df963
@ -317,7 +317,12 @@ public:
|
||||
|
||||
for (size_t cellIdx = 0; static_cast<size_t>(cellIdx) < rigGrid->cellCount(); cellIdx++)
|
||||
{
|
||||
values[cellIdx] = cellCenterDataAccessObject->cellScalar(cellIdx);
|
||||
double cellValue = cellCenterDataAccessObject->cellScalar(cellIdx);
|
||||
if (cellValue == HUGE_VAL)
|
||||
{
|
||||
cellValue = 0.0;
|
||||
}
|
||||
values[cellIdx] = cellValue;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user