Re: [DuMux] Step post-processing in MPI mode

2021-11-18 Thread Dmitry Pavlov
Timo, Thank you very much, that worked like a charm. On another note, did you have a chance to look into MR 2914 and my message from October 28? Best regards, Dmitry On 18.11.2021 17:19, Timo Koch wrote: Hi Dmitry, you want to only iterate over the internal cells to not sum up things tw

Re: [DuMux] Step post-processing in MPI mode

2021-11-18 Thread Timo Koch
Hi Dmitry, you want to only iterate over the internal cells to not sum up things twice on the process boundary, to this end use for (const auto& element : elements(this->gridGeometry().gridView(), Dune::Partitions::interior)) After the loop you actually have to sum up over the process if you w