mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
eclthresholdpressure: use elements range generator
This commit is contained in:
parent
3599e0e5de
commit
7f21bc55b0
@ -104,15 +104,8 @@ private:
|
|||||||
using Toolbox = MathToolbox<Evaluation>;
|
using Toolbox = MathToolbox<Evaluation>;
|
||||||
// loop over the whole grid and compute the maximum gravity adjusted pressure
|
// loop over the whole grid and compute the maximum gravity adjusted pressure
|
||||||
// difference between two EQUIL regions.
|
// difference between two EQUIL regions.
|
||||||
auto elemIt = gridView.template begin</*codim=*/ 0>();
|
|
||||||
const auto& elemEndIt = gridView.template end</*codim=*/ 0>();
|
|
||||||
ElementContext elemCtx(simulator_);
|
ElementContext elemCtx(simulator_);
|
||||||
for (; elemIt != elemEndIt; ++elemIt) {
|
for (const auto& elem : elements(gridView, Dune::Partitions::interior)) {
|
||||||
|
|
||||||
const auto& elem = *elemIt;
|
|
||||||
if (elem.partitionType() != Dune::InteriorEntity)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
elemCtx.updateAll(elem);
|
elemCtx.updateAll(elem);
|
||||||
const auto& stencil = elemCtx.stencil(/*timeIdx=*/0);
|
const auto& stencil = elemCtx.stencil(/*timeIdx=*/0);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user