OutputsMaterialPropertyOfElement#
- class ansys.dpf.core.operators.result.material_property_of_element.OutputsMaterialPropertyOfElement(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.outputs._OutputsIntermediate class used to get outputs from material_property_of_element operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.material_property_of_element() >>> # Connect inputs : op.inputs. ... >>> result_material_properties = op.outputs.material_properties()
Overview#
Allows to get material_properties output of the operator |
Import detail#
from ansys.dpf.core.operators.result.material_property_of_element import OutputsMaterialPropertyOfElement
Property detail#
- property OutputsMaterialPropertyOfElement.material_properties: ansys.dpf.core.outputs.Output[ansys.dpf.core.field.Field]#
Allows to get material_properties output of the operator
material properties
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.material_property_of_element() >>> # Get the output from op.outputs. ... >>> result_material_properties = op.outputs.material_properties()
Method detail#
- OutputsMaterialPropertyOfElement.__str__()#