OutputsPretension#

class ansys.dpf.core.operators.result.pretension.OutputsPretension(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from pretension operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.pretension()
>>> # Connect inputs : op.inputs. ...
>>> result_adjustment = op.outputs.adjustment()
>>> result_tension_force = op.outputs.tension_force()

Overview#

adjustment

Allows to get adjustment output of the operator

tension_force

Allows to get tension_force output of the operator

Import detail#

from ansys.dpf.core.operators.result.pretension import OutputsPretension

Property detail#

property OutputsPretension.adjustment: ansys.dpf.core.outputs.Output#

Allows to get adjustment output of the operator

Adjustment

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.pretension()
>>> # Get the output from op.outputs. ...
>>> result_adjustment = op.outputs.adjustment()
property OutputsPretension.tension_force: ansys.dpf.core.outputs.Output#

Allows to get tension_force output of the operator

Tension Force

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.pretension()
>>> # Get the output from op.outputs. ...
>>> result_tension_force = op.outputs.tension_force()