Source code for abaqus.Region.RegionPartBase
from abaqusConstants import *
from ..Part.PartBase import PartBase
[docs]class RegionPartBase(PartBase):
"""The following commands operate on Part objects. For more information about the Part
object, see Part object.
Notes
-----
This object can be accessed by:
.. code-block:: python
import regionToolset
"""
[docs] def clashSets(self, arg1: str, arg2: str):
"""This command prints a message describing the relationship between the contents of two
sets. Possible outcomes are:
- Both sets are the same.
- Set 2 is a subset of set 1.
- Set 2 is a superset of set 1.
- Set 2 intersects set 1.
- Set 2 touches set 1 (their boundaries intersect).
- Set 2 and set 1 are disjoint.
This command accepts only positional arguments and has no keywords.
Parameters
----------
arg1
A Set or Surface object specifying set 1.
arg2
A Set or Surface object specifying set 2.
"""
pass
[docs] def markSetInternal(self, setName: str, internalSet: Boolean):
"""This command marks the given Set as internal or external.
Parameters
----------
setName
A string specifying the Set name.
internalSet
A Boolean specifying whether the Set should be marked as internal.
"""
pass
[docs] def markSurfaceInternal(self, setName: str, internalSurface: Boolean):
"""This command marks the given Surface as internal or external.
Parameters
----------
setName
A string specifying the Surface name.
internalSurface
A Boolean specifying whether the Surface should be marked as internal.
"""
pass
[docs] def isSetInternal(self, setName: str):
"""This command returns a flag indicating whether the Set is Internal.
Parameters
----------
setName
A string specifying the Set name.
"""
pass
[docs] def isSurfaceInternal(self, surfaceName: str):
"""This command returns a flag indicating whether the Surface is Internal.
Parameters
----------
surfaceName
A string specifying the Surface name.
"""
pass
[docs] def deleteSets(self, setNames: tuple):
"""This command deletes the given sets from the part.
Parameters
----------
setNames
A sequence of Strings specifying the set names that will be deleted from the part.
"""
pass
[docs] def deleteSurfaces(self, surfaceNames: tuple):
"""This command deletes the given surfaces from the part.
Parameters
----------
surfaceNames
A sequence of Strings specifying the surface names that will be deleted from the part.
"""
pass