OutputsFindReducedCoordinates#
- class ansys.dpf.core.operators.mapping.find_reduced_coordinates.OutputsFindReducedCoordinates(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.outputs._OutputsIntermediate class used to get outputs from find_reduced_coordinates operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.find_reduced_coordinates() >>> # Connect inputs : op.inputs. ... >>> result_reduced_coordinates = op.outputs.reduced_coordinates() >>> result_element_ids = op.outputs.element_ids()
Overview#
Allows to get reduced_coordinates output of the operator |
|
Allows to get element_ids output of the operator |
Import detail#
from ansys.dpf.core.operators.mapping.find_reduced_coordinates import OutputsFindReducedCoordinates
Property detail#
- property OutputsFindReducedCoordinates.reduced_coordinates: ansys.dpf.core.outputs.Output[ansys.dpf.core.fields_container.FieldsContainer]#
Allows to get reduced_coordinates output of the operator
coordinates in the reference elements
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.find_reduced_coordinates() >>> # Get the output from op.outputs. ... >>> result_reduced_coordinates = op.outputs.reduced_coordinates()
- property OutputsFindReducedCoordinates.element_ids: ansys.dpf.core.outputs.Output[ansys.dpf.core.scopings_container.ScopingsContainer]#
Allows to get element_ids output of the operator
Ids of the elements where each set of reduced coordinates is found
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.mapping.find_reduced_coordinates() >>> # Get the output from op.outputs. ... >>> result_element_ids = op.outputs.element_ids()
Method detail#
- OutputsFindReducedCoordinates.__str__()#