InputsMembersInCompressionNotCertified#

class ansys.dpf.core.operators.result.members_in_compression_not_certified.InputsMembersInCompressionNotCertified(op: ansys.dpf.core.dpf_operator.Operator)#

Bases: ansys.dpf.core.inputs._Inputs

Intermediate class used to connect user inputs to members_in_compression_not_certified operator.

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_compression_not_certified()
>>> my_time_scoping = dpf.Scoping()
>>> op.inputs.time_scoping.connect(my_time_scoping)
>>> my_field_yield_strength = dpf.DataSources()
>>> op.inputs.field_yield_strength.connect(my_field_yield_strength)
>>> my_field_end_condition = dpf.DataSources()
>>> op.inputs.field_end_condition.connect(my_field_end_condition)
>>> my_streams = dpf.StreamsContainer()
>>> op.inputs.streams.connect(my_streams)
>>> my_data_sources = dpf.DataSources()
>>> op.inputs.data_sources.connect(my_data_sources)
>>> my_manufacture = bool()
>>> op.inputs.manufacture.connect(my_manufacture)
>>> my_partial_factor = float()
>>> op.inputs.partial_factor.connect(my_partial_factor)
>>> my_mesh = dpf.MeshedRegion()
>>> op.inputs.mesh.connect(my_mesh)
>>> my_axial_force = dpf.FieldsContainer()
>>> op.inputs.axial_force.connect(my_axial_force)
>>> my_fabrication_type = bool()
>>> op.inputs.fabrication_type.connect(my_fabrication_type)

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.

field_end_condition

Allows to connect field_end_condition input to the operator.

streams

Allows to connect streams input to the operator.

data_sources

Allows to connect data_sources input to the operator.

manufacture

Allows to connect manufacture input to the operator.

partial_factor

Allows to connect partial_factor input to the operator.

mesh

Allows to connect mesh input to the operator.

axial_force

Allows to connect axial_force input to the operator.

fabrication_type

Allows to connect fabrication_type input to the operator.

Import detail#

from ansys.dpf.core.operators.result.members_in_compression_not_certified import InputsMembersInCompressionNotCertified

Property detail#

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

Allows to connect time_scoping input to the operator.

time/freq set ids (use ints or scoping)

Returns:

An Input instance for this pin.

Return type:

input

Examples

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

Allows to connect field_yield_strength input to the operator.

This pin contains file csv or field of beam’s Yield Strength.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_compression_not_certified()
>>> op.inputs.field_yield_strength.connect(my_field_yield_strength)
>>> # or
>>> op.inputs.field_yield_strength(my_field_yield_strength)
property InputsMembersInCompressionNotCertified.field_end_condition: ansys.dpf.core.inputs.Input[ansys.dpf.core.data_sources.DataSources | ansys.dpf.core.field.Field]#

Allows to connect field_end_condition input to the operator.

This pin contains file csv or field of beam’s end condition defined by the user. If no input at this pin found, it would take end condition’s value of all beams as 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_compression_not_certified()
>>> op.inputs.field_end_condition.connect(my_field_end_condition)
>>> # or
>>> op.inputs.field_end_condition(my_field_end_condition)
property InputsMembersInCompressionNotCertified.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_compression_not_certified()
>>> op.inputs.streams.connect(my_streams)
>>> # or
>>> op.inputs.streams(my_streams)
property InputsMembersInCompressionNotCertified.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_compression_not_certified()
>>> op.inputs.data_sources.connect(my_data_sources)
>>> # or
>>> op.inputs.data_sources(my_data_sources)
property InputsMembersInCompressionNotCertified.manufacture: ansys.dpf.core.inputs.Input[bool]#

Allows to connect manufacture input to the operator.

Manufacturing processus:hot finished if TRUE or cold formed if FALSE. Default value : hot finished.

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_compression_not_certified()
>>> op.inputs.manufacture.connect(my_manufacture)
>>> # or
>>> op.inputs.manufacture(my_manufacture)
property InputsMembersInCompressionNotCertified.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_compression_not_certified()
>>> op.inputs.partial_factor.connect(my_partial_factor)
>>> # or
>>> op.inputs.partial_factor(my_partial_factor)
property InputsMembersInCompressionNotCertified.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_compression_not_certified()
>>> op.inputs.mesh.connect(my_mesh)
>>> # or
>>> op.inputs.mesh(my_mesh)
property InputsMembersInCompressionNotCertified.axial_force: ansys.dpf.core.inputs.Input[ansys.dpf.core.fields_container.FieldsContainer]#

Allows to connect axial_force input to the operator.

Fields Container of axial force 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_compression_not_certified()
>>> op.inputs.axial_force.connect(my_axial_force)
>>> # or
>>> op.inputs.axial_force(my_axial_force)
property InputsMembersInCompressionNotCertified.fabrication_type: ansys.dpf.core.inputs.Input[bool]#

Allows to connect fabrication_type input to the operator.

If there is beam I in the structure, please define its fabrication type. True: Rolled section, False: Welded section

Returns:

An Input instance for this pin.

Return type:

input

Examples

>>> from ansys.dpf import core as dpf
>>> op = dpf.operators.result.members_in_compression_not_certified()
>>> op.inputs.fabrication_type.connect(my_fabrication_type)
>>> # or
>>> op.inputs.fabrication_type(my_fabrication_type)

Method detail#

InputsMembersInCompressionNotCertified.__str__()#
InputsMembersInCompressionNotCertified.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.

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