InputsRotate
#
- class ansys.dpf.core.operators.geo.rotate.InputsRotate(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._Inputs
Intermediate class used to connect user inputs to rotate operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.geo.rotate() >>> my_field = dpf.Field() >>> op.inputs.field.connect(my_field) >>> my_field_rotation_matrix = dpf.Field() >>> op.inputs.field_rotation_matrix.connect(my_field_rotation_matrix)
Overview#
Allows to connect field input to the operator. |
|
Allows to connect field_rotation_matrix input to the operator. |
Import detail#
from ansys.dpf.core.operators.geo.rotate import InputsRotate
Property detail#
- property InputsRotate.field: ansys.dpf.core.inputs.Input#
Allows to connect field input to the operator.
field or fields container with only one field is expected
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.geo.rotate() >>> op.inputs.field.connect(my_field) >>> # or >>> op.inputs.field(my_field)
- property InputsRotate.field_rotation_matrix: ansys.dpf.core.inputs.Input#
Allows to connect field_rotation_matrix input to the operator.
3-3 rotation matrix
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.geo.rotate() >>> op.inputs.field_rotation_matrix.connect(my_field_rotation_matrix) >>> # or >>> op.inputs.field_rotation_matrix(my_field_rotation_matrix)