Locking Meshes
Lock a mesh to make it independent of any other data in the model. Locking a mesh is useful if you, for example, want to keep an adapted mesh but need to clear the solution data that generated the adapted mesh. To lock a mesh, enter
model.component(
<ctag>
).mesh(
<tag>
).lockMesh();
You can examine the status of a mesh by entering
boolean locked = model.component(
<ctag>
).mesh(
<tag>
).isLocked();
Use the command
model.component(
<ctag>
).mesh(
<tag>
).geometricModel(true);
to disconnect the mesh from the geometry. See the section
Geometric Model
for more information.