Re: [DuMuX] How to get intersections from scvf and element?

2019-04-09 Thread Samuel Scherrer
Hi Timo, I ran find . -wholename '*/build-cmake/*' -delete inside the directory where all my dune modules are before rerunning dunecontrol and removed the line as you said. Is there anything else I have to do? I still get the same warning. I found that dune-grid/config.h.cmake contains the

Re: [DuMuX] How to get intersections from scvf and element?

2019-04-09 Thread Timo Koch
Hi Samuel, did you delete the build folders before you reran dunecontrol? Also you can just leave out the whole line  with DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS because the default should be false. Timo On 09.04.19 11:49, Samuel Scherrer wrote: Hi Bernd, Yes, I set

Re: [DuMuX] How to get intersections from scvf and element?

2019-04-09 Thread Samuel Scherrer
Hi Bernd, Yes, I set "-DDUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS:BOOL=FALSE" in cmake.opts and ran dune-common/bin/dunecontrol --opts=cmake.opts all Kind regards, Samuel On Tue, 2019-04-09 at 09:32 +, Flemisch, Bernd wrote: > Did you leave the ":BOOL" like in >

Re: [DuMuX] How to get intersections from scvf and element?

2019-04-09 Thread Flemisch, Bernd
Did you leave the ":BOOL" like in -DDUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS:BOOL=FALSE ? Kind regards Bernd -- ___ Bernd Flemisch phone: +49 711 685 69162 IWS, Universität Stuttgart fax: +49

Re: [DuMuX] How to get intersections from scvf and element?

2019-04-09 Thread Timo Koch
Hi Samuel, you can't just redefine the macro because it's already defined somewhere in Dune, that's what the error means. You need to reconfigure the dune libraries with the the new setting in the opts file. Timo On 09.04.19 10:49, Samuel Scherrer wrote: Hi Bernd, I had trouble

Re: [DuMuX] How to get intersections from scvf and element?

2019-04-09 Thread Samuel Scherrer
Hi Bernd, I had trouble installing UGGrid, so I would prefer using ALUGrid. However, disabling the code for ALUGrid in boundaryflag.hh does the trick, but I'm having trouble setting DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS to false. At the moment I just added '&& 0' in dumux/common/boundaryflag.hh.