BoundaryFlag for ALUGrid with Gmsh mesh file
A while ago I had problems with the BoundaryFlag
specialization for ALUGrid
, as described on the mailing list
Timo did propose a clean solution, however, this was beyond my C++ skills. Since it is also not easy to change the value of DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS
, would it be possible to add an additional compile time flag to the check whether the BoundaryFlag specialization for ALUGrid should be used?
That is, changing line 198 of dumux/io/grid/gridmanager_alu.hh from
#if DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS
to
#if DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS && !defined(USE_GMSH_BOUNDARY_FLAGS_WITH_ALUGRID)
If so, are there any naming preferences?
Edited by Samuel Scherrer