InputsRotateInCylindricalCsFc#
- class ansys.dpf.core.operators.geo.rotate_in_cylindrical_cs_fc.InputsRotateInCylindricalCsFc(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._InputsIntermediate class used to connect user inputs to rotate_in_cylindrical_cs_fc operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.geo.rotate_in_cylindrical_cs_fc() >>> my_field = dpf.Field() >>> op.inputs.field.connect(my_field) >>> my_coordinate_system = dpf.Field() >>> op.inputs.coordinate_system.connect(my_coordinate_system) >>> my_mesh = dpf.MeshedRegion() >>> op.inputs.mesh.connect(my_mesh)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect field input to the operator. |
|
Allows to connect coordinate_system input to the operator. |
|
Allows to connect mesh input to the operator. |
Import detail#
from ansys.dpf.core.operators.geo.rotate_in_cylindrical_cs_fc import InputsRotateInCylindricalCsFc
Property detail#
- property InputsRotateInCylindricalCsFc.field: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field | ansys.dpf.core.fields_container.FieldsContainer]#
Allows to connect field input to the operator.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.geo.rotate_in_cylindrical_cs_fc() >>> op.inputs.field.connect(my_field) >>> # or >>> op.inputs.field(my_field)
- property InputsRotateInCylindricalCsFc.coordinate_system: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field]#
Allows to connect coordinate_system input to the operator.
3-3 rotation matrix and origin coordinates must be set here to define a coordinate system.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.geo.rotate_in_cylindrical_cs_fc() >>> op.inputs.coordinate_system.connect(my_coordinate_system) >>> # or >>> op.inputs.coordinate_system(my_coordinate_system)
- property InputsRotateInCylindricalCsFc.mesh: ansys.dpf.core.inputs.Input[ansys.dpf.core.meshed_region.MeshedRegion]#
Allows to connect mesh input to the operator.
Mesh support of the input fields_container, in case it does not have one defined.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.geo.rotate_in_cylindrical_cs_fc() >>> op.inputs.mesh.connect(my_mesh) >>> # or >>> op.inputs.mesh(my_mesh)
Method detail#
- InputsRotateInCylindricalCsFc.__str__()#
- InputsRotateInCylindricalCsFc.connect(inpt)#
Connect any input (an entity or an operator output) to any input pin of this operator.
Searches for the input type corresponding to the output.
Deprecated since version Deprecated: in favor of explicit output-to-input connections.
- InputsRotateInCylindricalCsFc.__call__(inpt)#