Hi,
After some research on the forum i have found it is possible to control the way fenics partition the mesh (with MPI):
For exemple, to control the overlap between partitioned adjacent meshes, one can use:
parameters["ghost_mode"] = "shared_facet"
or
parameters["ghost_mode"] = "shared_vertex"
Running some test case, i could see clearly the effect of each choice.
Then, i have noticed these two parameters:
parameters["mesh_partitioner"] = "SCOTCH"
parameters["partitioning_approach"] = "PARTITION"
So here is my question: what are "mesh_partitioner" and "partitioning_approach" doing ? And what are the different possible options for each of them? I don't know what are the other values i can set, apart SCOTCH and PARTITION, so i can't do any test.
Also, If you know any other parameter that control the mesh partitioning, please tell me.
I use Fenics 2016.1
Regards