dengwirda / jigsaw-geo-matlab

MATLAB bindings for JIGSAW(GEO): an unstructured mesh generator for geoscientific modelling.
Other
40 stars 23 forks source link

Support for unstructured h(x) on the ellipsoid #20

Closed dengwirda closed 5 years ago

dengwirda commented 6 years ago

Need to add support for mesh-spacing functions defined on unstructured ellipsoidal surface meshes...

dengwirda commented 5 years ago

Support added in 0.9.10. Unstructured h(x) data can be specified on the ellipsoid as follows:

hfun.mshID = 'ellipsoid-mesh';
hfun.radii = [r1,r2,r3];
hfun.point.coord = [lon1,lat1,tag1; ...];
hfun.tria3.index = [nn11,nn12,nn13,tag1; ...];
hfun.value = [h1; ...];