Source code for abaqus.Interaction.ActuatorSensorProp
from .ContactProperty import ContactProperty
[docs]class ActuatorSensorProp(ContactProperty):
"""The ActuatorSensorProp object is an interaction property that defines the properties
referred to by an ActuatorSensor object.
The ActuatorSensorProp object is derived from the InteractionProperty object.
Notes
-----
This object can be accessed by:
.. code-block:: python
import interaction
mdb.models[name].interactionProperties[name]
The corresponding analysis keywords are:
- UEL PROPERTY
"""
def __init__(self, name: str, realProperties: tuple = (), integerProperties: tuple = ()):
"""This method creates an ActuatorSensorProp object.
Notes
-----
This function can be accessed by:
.. code-block:: python
mdb.models[name].ActuatorSensorProp
Parameters
----------
name
A String specifying the interaction property repository key.
realProperties
A sequence of Floats specifying the PROPS array used by user subroutine UEL. The default
value is an empty sequence.
integerProperties
A sequence of Ints specifying the JPROPS array used by user subroutine UEL. The default
value is an empty sequence.
Returns
-------
An ActuatorSensorProp object.
"""
super().__init__(name)
pass
[docs] def setValues(self, realProperties: tuple = (), integerProperties: tuple = ()):
"""This method modifies the ActuatorSensorProp object.
Parameters
----------
realProperties
A sequence of Floats specifying the PROPS array used by user subroutine UEL. The default
value is an empty sequence.
integerProperties
A sequence of Ints specifying the JPROPS array used by user subroutine UEL. The default
value is an empty sequence.
"""
pass