InputsMembersInBendingNotCertified#

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

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to members_in_bending_not_certified operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> my_time_scoping = dpf.Scoping()
>>> op.inputs.time_scoping.connect(my_time_scoping)
>>> my_field_yield_strength = dpf.Field()
>>> op.inputs.field_yield_strength.connect(my_field_yield_strength)
>>> my_class_cross_section = bool()
>>> op.inputs.class_cross_section.connect(my_class_cross_section)
>>> my_streams = dpf.StreamsContainer()
>>> op.inputs.streams.connect(my_streams)
>>> my_data_sources = dpf.DataSources()
>>> op.inputs.data_sources.connect(my_data_sources)
>>> my_partial_factor = float()
>>> op.inputs.partial_factor.connect(my_partial_factor)
>>> my_mesh = dpf.MeshedRegion()
>>> op.inputs.mesh.connect(my_mesh)
>>> my_bending_moment_y = dpf.FieldsContainer()
>>> op.inputs.bending_moment_y.connect(my_bending_moment_y)
>>> my_bending_moment_z = dpf.FieldsContainer()
>>> op.inputs.bending_moment_z.connect(my_bending_moment_z)

Overview#

connect

Connect any input (an entity or an operator output) to any input pin of this operator.

time_scoping

Allows to connect time_scoping input to the operator.

field_yield_strength

Allows to connect field_yield_strength input to the operator.

class_cross_section

Allows to connect class_cross_section input to the operator.

streams

Allows to connect streams input to the operator.

data_sources

Allows to connect data_sources input to the operator.

partial_factor

Allows to connect partial_factor input to the operator.

mesh

Allows to connect mesh input to the operator.

bending_moment_y

Allows to connect bending_moment_y input to the operator.

bending_moment_z

Allows to connect bending_moment_z input to the operator.

Import detail#

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

Property detail#

property InputsMembersInBendingNotCertified.time_scoping: ansys.dpf.core.inputs.Input[ansys.dpf.core.scoping.Scoping | int]#

Allows to connect time_scoping input to the operator.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.time_scoping.connect(my_time_scoping)
>>> # or
>>> op.inputs.time_scoping(my_time_scoping)
property InputsMembersInBendingNotCertified.field_yield_strength: ansys.dpf.core.inputs.Input[ansys.dpf.core.field.Field]#

Allows to connect field_yield_strength input to the operator.

This pin contains field of beam’s Yield Strength defined by the user.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.field_yield_strength.connect(my_field_yield_strength)
>>> # or
>>> op.inputs.field_yield_strength(my_field_yield_strength)
property InputsMembersInBendingNotCertified.class_cross_section: ansys.dpf.core.inputs.Input[bool]#

Allows to connect class_cross_section input to the operator.

Selection for a cross-section. True: Class 1 or 2 cross-sections. False: Class 3 cross section. If the user defines the cross section as class 1 or 2, the section modulus would be plastic section modulus. If it’s class 3- cross section,the section modulus would be elastic section modulus

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.class_cross_section.connect(my_class_cross_section)
>>> # or
>>> op.inputs.class_cross_section(my_class_cross_section)
property InputsMembersInBendingNotCertified.streams: ansys.dpf.core.inputs.Input[ansys.dpf.core.streams_container.StreamsContainer]#

Allows to connect streams input to the operator.

result file container allowed to be kept open to cache data.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.streams.connect(my_streams)
>>> # or
>>> op.inputs.streams(my_streams)
property InputsMembersInBendingNotCertified.data_sources: ansys.dpf.core.inputs.Input[ansys.dpf.core.data_sources.DataSources]#

Allows to connect data_sources input to the operator.

result file path container, used if no streams are set.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.data_sources.connect(my_data_sources)
>>> # or
>>> op.inputs.data_sources(my_data_sources)
property InputsMembersInBendingNotCertified.partial_factor: ansys.dpf.core.inputs.Input[float]#

Allows to connect partial_factor input to the operator.

partial safety factor for resistance of members to instability assessed by member checks. Default value: 1.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.partial_factor.connect(my_partial_factor)
>>> # or
>>> op.inputs.partial_factor(my_partial_factor)
property InputsMembersInBendingNotCertified.mesh: ansys.dpf.core.inputs.Input[ansys.dpf.core.meshed_region.MeshedRegion]#

Allows to connect mesh input to the operator.

Mesh containing beam’s properties defined by user

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.mesh.connect(my_mesh)
>>> # or
>>> op.inputs.mesh(my_mesh)
property InputsMembersInBendingNotCertified.bending_moment_y: ansys.dpf.core.inputs.Input[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to connect bending_moment_y input to the operator.

Fields Container of bending moment on axis y defined by user

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.bending_moment_y.connect(my_bending_moment_y)
>>> # or
>>> op.inputs.bending_moment_y(my_bending_moment_y)
property InputsMembersInBendingNotCertified.bending_moment_z: ansys.dpf.core.inputs.Input[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to connect bending_moment_z input to the operator.

Fields Container of bending moment on axis z defined by user

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_bending_not_certified()
>>> op.inputs.bending_moment_z.connect(my_bending_moment_z)
>>> # or
>>> op.inputs.bending_moment_z(my_bending_moment_z)

Method detail#

InputsMembersInBendingNotCertified.__str__()#
InputsMembersInBendingNotCertified.connect(inpt)#

Connect any input (an entity or an operator output) to any input pin of this operator.

Searches for the input type corresponding to the output.

Deprecated since version Deprecated: in favor of explicit output-to-input connections.

InputsMembersInBendingNotCertified.__call__(inpt)#
InputsMembersInBendingNotCertified.__getitem__(item) Input#