41.7.3 Wrapping a mesh about the Z-axis

Use the ABAQUS Scripting Interface method wrapMesh to wrap a planar orphan mesh part around a cylindrical surface defined by the global Z-axis and a specified radius. The planar mesh must lie in the X–Y plane, and the modeling space of the part should be three-dimensional. If necessary, you can change the modeling space of a part by clicking mouse button 3 on the part in the Model Tree and selecting Edit from the menu that appears.

The wrapping procedure will relocate a node at point (, ) on the planar mesh to (), where is the specified radius, = , and =, as shown in Figure 41–18. A point on the planar orphan mesh part located at (0, 0) is mapped to location (, 0, 0) on the cylindrical surface.

Figure 41–18 Wrapping a planar orphan mesh part.

Creating an instance of an orphan mesh part that is wrapped and has the desired orientation in the assembly, requires some planning because you can position only instances of parts, but you can wrap only parts. The following steps will help you achieve the desired goal:

  1. Use the tools in the Assembly module to translate and/or rotate an instance of the planar orphan mesh part in the assembly.

  2. Use the Create Mesh Part tool in the Mesh module to create a planar mesh part from the reoriented instance.

  3. Wrap the reoriented mesh part.

  4. Create an instance of the wrapped part and use the tools in the Assembly module to translate and/or rotate the instance in the assembly.

If you are trying to create a full 360° wrap, discretization approximations may result in a small gap between nodes along the seam edge. You must use the merge nodes tool to stitch the seam by merging pairs of nodes into a single node; for more information, see Merging nodes, Section 41.5.4.

The following shows an example of using the ABAQUS Scripting Interface to wrap a mesh:

model = mdb.models['Model-1']
part = model.parts['Part-1']
part.wrapMesh(radius=5.0)
You can use the command line interface to enter ABAQUS Scripting Interface commands, as described in Using the Python interpreter, Section 4.3 of the ABAQUS Scripting User's Manual.


For information on related topics, click any of the following items: