opm-grid
opm-grid copied to clipboard
DUNE module supporting grids in a corner-point format
This PR intends to improve the refinement of CpGrid as well as partially support adaptivity, for _general_ corner-point grids. Marking cells with no neighboring connections for refinement is not supported...
This PR will be used in combination with https://github.com/OPM/opm-common/pull/3881, https://github.com/OPM/opm-simulators/pull/5097 and https://github.com/OPM/opm-models/pull/861 to debug a jenkins failure, see https://github.com/OPM/opm-simulators/pull/5097 for more information
Instead of switch-case we compute the index directly for Non-NNcs.
When a CpGrid has LGRs, a Cartesian index (key) is associated to more than one compressed index (value). Therefore, this unordered_map now has been replaced by an unordered_multimap, to support...
While looking at OPM/opm-simulators#740 I started wondering whether we actually distribute the information about aquifer cells when load balancing. I hope we do, but we should definitely add one test...
For testing purposes (zoltan acting up), it was requested that flow can run with empty grid partitions. This is the start of that work.
Hello; I am about to write some code to report on MINPV processing, specifically on the number of cells removed and the volume "lost". This can either be reported where...
The verteq (Vertical Equilibrium) is a revitalization of a former OPM project called verteq from some years back. It basically allows to colaps a column of grid cells from a...
I was debugging another issue when an `assert` triggered in [`EntityRep::setValue()`](https://github.com/OPM/opm-grid/blob/723e0d3591bcd2e4c9b6b4b2c9c5f5f3a6993e90/opm/grid/cpgrid/EntityRep.hpp#L120). The direct cause of this assertion failure was function [`cpgrid::buildFaceToCell()`](https://github.com/OPM/opm-grid/blob/723e0d3591bcd2e4c9b6b4b2c9c5f5f3a6993e90/opm/grid/cpgrid/processEclipseFormat.cpp#L785) calling [`setValue()`](https://github.com/OPM/opm-grid/blob/723e0d3591bcd2e4c9b6b4b2c9c5f5f3a6993e90/opm/grid/cpgrid/processEclipseFormat.cpp#L823) with ``` other_cell = -1 ``` There...
This test should fail currently but should show my point outlined in #472 . Like I said there actnum being empty should never happen in production.