InputsBeamTShearForce#
- class ansys.dpf.core.operators.result.beam_t_shear_force.InputsBeamTShearForce(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.inputs._InputsIntermediate class used to connect user inputs to beam_t_shear_force operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.beam_t_shear_force() >>> my_time_scoping = dpf.Scoping() >>> op.inputs.time_scoping.connect(my_time_scoping) >>> my_mesh_scoping = dpf.ScopingsContainer() >>> op.inputs.mesh_scoping.connect(my_mesh_scoping) >>> my_streams_container = dpf.StreamsContainer() >>> op.inputs.streams_container.connect(my_streams_container) >>> my_data_sources = dpf.DataSources() >>> op.inputs.data_sources.connect(my_data_sources) >>> my_unit_system = int() >>> op.inputs.unit_system.connect(my_unit_system)
Overview#
Connect any input (an entity or an operator output) to any input pin of this operator. |
Allows to connect time_scoping input to the operator. |
|
Allows to connect mesh_scoping input to the operator. |
|
Allows to connect streams_container input to the operator. |
|
Allows to connect data_sources input to the operator. |
|
Allows to connect unit_system input to the operator. |
Import detail#
from ansys.dpf.core.operators.result.beam_t_shear_force import InputsBeamTShearForce
Property detail#
- property InputsBeamTShearForce.time_scoping: ansys.dpf.core.inputs.Input[ansys.dpf.core.scoping.Scoping | int | float | ansys.dpf.core.field.Field]#
Allows to connect time_scoping input to the operator.
time/freq values (use doubles or field), time/freq set ids (use ints or scoping) or time/freq step ids (use scoping with TimeFreq_steps location) required in output. To specify time/freq values at specific load steps, put a Field (and not a list) in input with a scoping located on “TimeFreq_steps”. Linear time freq intrapolation is performed if the values are not in the result files and the data at the max time or freq is taken when time/freqs are higher than available time/freqs in result files. To get all data for all time/freq sets, connect an int with value -1.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.beam_t_shear_force() >>> op.inputs.time_scoping.connect(my_time_scoping) >>> # or >>> op.inputs.time_scoping(my_time_scoping)
- property InputsBeamTShearForce.mesh_scoping: ansys.dpf.core.inputs.Input[ansys.dpf.core.scopings_container.ScopingsContainer | ansys.dpf.core.scoping.Scoping]#
Allows to connect mesh_scoping input to the operator.
elements scoping required in output.
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.beam_t_shear_force() >>> op.inputs.mesh_scoping.connect(my_mesh_scoping) >>> # or >>> op.inputs.mesh_scoping(my_mesh_scoping)
- property InputsBeamTShearForce.streams_container: ansys.dpf.core.inputs.Input[ansys.dpf.core.streams_container.StreamsContainer]#
Allows to connect streams_container 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.beam_t_shear_force() >>> op.inputs.streams_container.connect(my_streams_container) >>> # or >>> op.inputs.streams_container(my_streams_container)
- property InputsBeamTShearForce.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.beam_t_shear_force() >>> op.inputs.data_sources.connect(my_data_sources) >>> # or >>> op.inputs.data_sources(my_data_sources)
- property InputsBeamTShearForce.unit_system: ansys.dpf.core.inputs.Input[int | str | ansys.dpf.core.unit_system.UnitSystem]#
Allows to connect unit_system input to the operator.
(LSDyna) Unit System ID (int), semicolon-separated list of base unit strings (str) or UnitSystem instance
- Returns:
An Input instance for this pin.
- Return type:
input
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.beam_t_shear_force() >>> op.inputs.unit_system.connect(my_unit_system) >>> # or >>> op.inputs.unit_system(my_unit_system)
Method detail#
- InputsBeamTShearForce.__str__()#
- InputsBeamTShearForce.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.
- InputsBeamTShearForce.__call__(inpt)#