ansys.mapdl.core.Mapdl.aadd#

Mapdl.aadd(na1='', na2='', na3='', na4='', na5='', na6='', na7='', na8='', na9='', **kwargs)#

Adds separate areas to create a single area.

Mechanical APDL Command: AADD

Parameters:
na1str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na2str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na3str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na4str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na5str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na6str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na7str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na8str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

na9str

Numbers of areas to be added. If NA1 = ALL, add all selected areas and ignore NA2 to NA9. If NA1 = P, graphical picking is enabled and all remaining arguments are ignored (valid only in the GUI). A component name may also be substituted for NA1.

Notes

The areas must be coplanar. The original areas (and their corresponding lines and keypoints) will be deleted by default. See the boptn command for the options available to Boolean operations. Element attributes and solid model boundary conditions assigned to the original entities will not be transferred to the new entities generated. Concatenated entities are not valid with this command.

Examples

Generate two areas and combine them.

>>> a1 = mapdl.rectng(2.5, 3.5, 0, 10)
>>> a2 = mapdl.cyl4(0, 10, 2.5, 0, 3.5, 90)
>>> a_comb = mapdl.aadd(a1, a2)
>>> a_comb
3