Source code for abaqus.Optimization.SizingClusterAreas
from .GeometricRestriction import GeometricRestriction
[docs]class SizingClusterAreas(GeometricRestriction):
"""The SizingClusterAreas object defines a sizing cluster areas geometric restriction.
The SizingClusterAreas object is derived from the GeometricRestriction object.
Notes
-----
This object can be accessed by:
.. code-block:: python
import optimization
mdb.models[name].optimizationTasks[name].geometricRestrictions[name]
"""
def __init__(self, name: str, regions: tuple):
"""This method creates a SizingClusterAreas object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].optimizationTasks[name].SizingClusterAreas
Parameters
----------
name
A String specifying the geometric restriction repository key.
regions
Tuple of Region objects specifying the regions to which the geometric restriction is
applied.
Returns
-------
A SizingClusterAreas object.
"""
super().__init__()
pass