OutputsMembersInBendingNotCertified#

class ansys.dpf.core.operators.result.members_in_bending_not_certified.OutputsMembersInBendingNotCertified(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.outputs._Outputs

Intermediate class used to get outputs from members_in_bending_not_certified operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> # Connect inputs : op.inputs. ...
>>> result_buckling_resistance_bending_yy = op.outputs.buckling_resistance_bending_yy()
>>> result_buckling_resistance_bending_zz = op.outputs.buckling_resistance_bending_zz()

Overview#

buckling_resistance_bending_yy

Allows to get buckling_resistance_bending_yy output of the operator

buckling_resistance_bending_zz

Allows to get buckling_resistance_bending_zz output of the operator

Import detail#

from ansys.dpf.core.operators.result.members_in_bending_not_certified import OutputsMembersInBendingNotCertified

Property detail#

property OutputsMembersInBendingNotCertified.buckling_resistance_bending_yy: ansys.dpf.core.outputs.Output[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to get buckling_resistance_bending_yy output of the operator

Fields Container of buckling resistance factor on axis y-y in case of bending(M). These factors should be less than 1 and positive.

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> # Get the output from op.outputs. ...
>>> result_buckling_resistance_bending_yy = op.outputs.buckling_resistance_bending_yy()
property OutputsMembersInBendingNotCertified.buckling_resistance_bending_zz: ansys.dpf.core.outputs.Output[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to get buckling_resistance_bending_zz output of the operator

Fields Container of buckling resistance factor on axis z-z in case of bending(M). These factors should be less than 1 and positive.

Returns:

An Output instance for this pin.

Return type:

output

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> # Get the output from op.outputs. ...
>>> result_buckling_resistance_bending_zz = op.outputs.buckling_resistance_bending_zz()

Method detail#

OutputsMembersInBendingNotCertified.__getitem__(index) Output#
OutputsMembersInBendingNotCertified.__str__()#