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