I generate global mesh domain of Antarctica with “bamg” function as following:
domain = './Exp/Domain2.exp';
% generate mesh with “bamg” with low resolution
md1 = bamg(model,’domain’,domain,’hmax’,5000);
% generate mesh with “bamg” function with high resolution
md2 = bamg(model,'domain',domain,'hmax',2000);
When I generate the low resolution mesh with mesh size of 5000 m, there is no hole in the mesh. However, the high resolution mesh with mesh size of 2000 m displays a weird element. When I generate first mesh with “triangle” function, “triangle” function does not support fixed point (or “RequiredVertices” in “bamg” function).
Which method do you recommend me to generate mesh with Require Vertices?
1) low resolution mesh (mesh size = 2000 m)
- no hole in mesh

2) high resolution mesh (mesh size = 5000 m)
- weird element in mesh.
