gf_mesh_im — General constructor for MeshIm object (integration methods on a mesh).
mesh_im MIM = gf_mesh_im(mesh M [, { integ | int }]) mesh_im MIM[,M] = gf_mesh_im('load', string filename[,mesh M]) mesh_im MIM[,M] = gf_mesh_im('from string', string S [,mesh M]) mesh_im MIM = gf_mesh_im('clone', mesh_im MIM0)
General constructor for MeshIm object (integration methods on a mesh).
gf_mesh_im(mesh m[list(integ im|int im_degree)]) : Return a getfem handle to the newly created MeshIm object. For convenience, optional arguments ('im' or 'im_degree') can be provided, in that case a call to gf_mesh_im_set(mim, 'integ', ..) is issued with these arguments.
gf_mesh_im('load', string fname[, Mesh m]) : Load a MeshIm from a
file. If the mesh m
is not supplied (this kind of
file does not store the mesh), then it is read from the file and its
descriptor is returned as the second output argument.
gf_mesh_im('from string', string s[, mesh M]) : Create a MeshIm object from its string description. See also gf_mesh_im_get(mim,'char')
gf_mesh_im('clone', MeshIm mim2) : Create a copy of a MeshIm.
gf_mesh_im('levelset', LevelSet ls, string where, Integ im[, Integ im_tip]) : Build an integration method conformal to a partition
defined implicitely by a levelset. The where
argument define the domain of integration with respect to the
levelset, it has to be chosen among 'ALL', 'INSIDE', 'OUTSIDE' and 'BOUNDARY'.
gf_mesh_im('.mesh',Mesh m, [list(Integ im|int im_degree)]) : Build
a new MeshIm object. For convenience, optional arguments
(im
or im_degree
) can be
provided, in that case a call to MeshIm.integ() is issued with these
arguments.