Hi,
I am trying to extract information from the mesh registered for the intracellular physic (intra_mesh). If I run the code in serie I can get the coordinates, fibers, element, etc by using:
sf_mesh& ref_mesh = get_mesh(intra_elec_msh);
coord = ref_mesh.xyz;
connect = ref_mesh.con;
elem_start = ref_mesh.dsp;
tag = ref_mesh.tag;
fiber = ref_mesh.fib;
sheet = ref_mesh.she;
However, if I execute openCARP in parallel with 2 or more processes I only get the mesh information from one of the processes but not from the entire grid. Is there a way to create a global vector to store this information or do you have an example on how to extract this information?
Thank you in advance!