Source code for abaqus.Optimization.TopologyMillingControl

from abaqusConstants import *
from .GeometricRestriction import GeometricRestriction
from ..Region.Region import Region


[docs]class TopologyMillingControl(GeometricRestriction): """The TopologyMillingControl object defines a topology milling control geometric restriction. The TopologyMillingControl 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, millingDirections: tuple, region: Region, csys: int = None, millingCheckRegion: SymbolicConstant = MILLING_REGION, radius: float = None): """This method creates a TopologyMillingControl object. Notes ----- This function can be accessed by: .. code-block:: python mdb.models[name].optimizationTasks[name].TopologyMillingControl Parameters ---------- name A String specifying the geometric restriction repository key. millingDirections A tuple of VertexArray objects of length 2 specifying the milling directions. Each point can be specified through a tuple of coordinates instead of through a ConstrainedSketchVertex. region A Region object specifying the region to which the geometric restriction is applied. csys None or a DatumCsys object specifying the local coordinate system of the *millingDirections*. If *csys*=None, the global coordinate system is used. When this member is queried, it returns an Int indicating the identifier of the DatumCsys. The default value is None. millingCheckRegion The SymbolicConstant MILLING_REGION or a Region object specifying the milling check region. If the value is MILLING_REGION, the value of *region* is used as both the milling control region and the milling check region. The default value is MILLING_REGION. radius A Float specifying the radius for the collision check during the removal of the elements for the milling criteria. Returns ------- A TopologyMillingControl object. """ super().__init__() pass
[docs] def setValues(self, csys: int = None, millingCheckRegion: SymbolicConstant = MILLING_REGION, radius: float = None): """This method modifies the TopologyMillingControl object. Parameters ---------- csys None or a DatumCsys object specifying the local coordinate system of the *millingDirections*. If *csys*=None, the global coordinate system is used. When this member is queried, it returns an Int indicating the identifier of the DatumCsys. The default value is None. millingCheckRegion The SymbolicConstant MILLING_REGION or a Region object specifying the milling check region. If the value is MILLING_REGION, the value of *region* is used as both the milling control region and the milling check region. The default value is MILLING_REGION. radius A Float specifying the radius for the collision check during the removal of the elements for the milling criteria. """ pass