OutputsTransformInvariantTermsRbd#
- class ansys.dpf.core.operators.result.transform_invariant_terms_rbd.OutputsTransformInvariantTermsRbd(op: ansys.dpf.core.dpf_operator.Operator)#
Bases:
ansys.dpf.core.outputs._OutputsIntermediate class used to get outputs from transform_invariant_terms_rbd operator.
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Connect inputs : op.inputs. ... >>> result_model_data = op.outputs.model_data() >>> result_center_of_mass = op.outputs.center_of_mass() >>> result_inertia_relief = op.outputs.inertia_relief() >>> result_model_size = op.outputs.model_size() >>> result_master_node_coordinates = op.outputs.master_node_coordinates() >>> result_v_trsf = op.outputs.v_trsf() >>> result_k_mat = op.outputs.k_mat() >>> result_mass_mat = op.outputs.mass_mat() >>> result_c_mat = op.outputs.c_mat() >>> result_rhs = op.outputs.rhs() >>> result_dn = op.outputs.dn() >>> result_dr_cross_n = op.outputs.dr_cross_n() >>> result_drn = op.outputs.drn() >>> result_dn_cross_n = op.outputs.dn_cross_n() >>> result_dnx_y = op.outputs.dnx_y() >>> result_dny_y = op.outputs.dny_y() >>> result_dnz_y = op.outputs.dnz_y() >>> result_dyx_n = op.outputs.dyx_n() >>> result_dyy_n = op.outputs.dyy_n() >>> result_dyz_n = op.outputs.dyz_n() >>> result_dnxn = op.outputs.dnxn() >>> result_dnyn = op.outputs.dnyn() >>> result_dnzn = op.outputs.dnzn()
Overview#
Allows to get model_data output of the operator |
|
Allows to get center_of_mass output of the operator |
|
Allows to get inertia_relief output of the operator |
|
Allows to get model_size output of the operator |
|
Allows to get master_node_coordinates output of the operator |
|
Allows to get v_trsf output of the operator |
|
Allows to get k_mat output of the operator |
|
Allows to get mass_mat output of the operator |
|
Allows to get c_mat output of the operator |
|
Allows to get rhs output of the operator |
|
Allows to get dn output of the operator |
|
Allows to get dr_cross_n output of the operator |
|
Allows to get drn output of the operator |
|
Allows to get dn_cross_n output of the operator |
|
Allows to get dnx_y output of the operator |
|
Allows to get dny_y output of the operator |
|
Allows to get dnz_y output of the operator |
|
Allows to get dyx_n output of the operator |
|
Allows to get dyy_n output of the operator |
|
Allows to get dyz_n output of the operator |
|
Allows to get dnxn output of the operator |
|
Allows to get dnyn output of the operator |
|
Allows to get dnzn output of the operator |
Import detail#
from ansys.dpf.core.operators.result.transform_invariant_terms_rbd import OutputsTransformInvariantTermsRbd
Property detail#
- property OutputsTransformInvariantTermsRbd.model_data: ansys.dpf.core.outputs.Output[ansys.dpf.core.property_field.PropertyField]#
Allows to get model_data output of the operator
data describing the finite element model
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_model_data = op.outputs.model_data()
- property OutputsTransformInvariantTermsRbd.center_of_mass: ansys.dpf.core.outputs.Output[ansys.dpf.core.field.Field]#
Allows to get center_of_mass output of the operator
center of mass of the body
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_center_of_mass = op.outputs.center_of_mass()
- property OutputsTransformInvariantTermsRbd.inertia_relief: ansys.dpf.core.outputs.Output[ansys.dpf.core.field.Field]#
Allows to get inertia_relief output of the operator
inertia matrix
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_inertia_relief = op.outputs.inertia_relief()
- property OutputsTransformInvariantTermsRbd.model_size: ansys.dpf.core.outputs.Output[ansys.dpf.core.property_field.PropertyField]#
Allows to get model_size output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_model_size = op.outputs.model_size()
- property OutputsTransformInvariantTermsRbd.master_node_coordinates: ansys.dpf.core.outputs.Output#
Allows to get master_node_coordinates output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_master_node_coordinates = op.outputs.master_node_coordinates()
- property OutputsTransformInvariantTermsRbd.v_trsf: ansys.dpf.core.outputs.Output#
Allows to get v_trsf output of the operator
translational and rotational shape functions
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_v_trsf = op.outputs.v_trsf()
- property OutputsTransformInvariantTermsRbd.k_mat: ansys.dpf.core.outputs.Output[ansys.dpf.core.field.Field]#
Allows to get k_mat output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_k_mat = op.outputs.k_mat()
- property OutputsTransformInvariantTermsRbd.mass_mat: ansys.dpf.core.outputs.Output[ansys.dpf.core.field.Field]#
Allows to get mass_mat output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_mass_mat = op.outputs.mass_mat()
- property OutputsTransformInvariantTermsRbd.c_mat: ansys.dpf.core.outputs.Output[ansys.dpf.core.field.Field]#
Allows to get c_mat output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_c_mat = op.outputs.c_mat()
- property OutputsTransformInvariantTermsRbd.rhs: ansys.dpf.core.outputs.Output[ansys.dpf.core.field.Field]#
Allows to get rhs output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_rhs = op.outputs.rhs()
- property OutputsTransformInvariantTermsRbd.dn: ansys.dpf.core.outputs.Output#
Allows to get dn output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dn = op.outputs.dn()
- property OutputsTransformInvariantTermsRbd.dr_cross_n: ansys.dpf.core.outputs.Output#
Allows to get dr_cross_n output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dr_cross_n = op.outputs.dr_cross_n()
- property OutputsTransformInvariantTermsRbd.drn: ansys.dpf.core.outputs.Output#
Allows to get drn output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_drn = op.outputs.drn()
- property OutputsTransformInvariantTermsRbd.dn_cross_n: ansys.dpf.core.outputs.Output#
Allows to get dn_cross_n output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dn_cross_n = op.outputs.dn_cross_n()
- property OutputsTransformInvariantTermsRbd.dnx_y: ansys.dpf.core.outputs.Output#
Allows to get dnx_y output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dnx_y = op.outputs.dnx_y()
- property OutputsTransformInvariantTermsRbd.dny_y: ansys.dpf.core.outputs.Output#
Allows to get dny_y output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dny_y = op.outputs.dny_y()
- property OutputsTransformInvariantTermsRbd.dnz_y: ansys.dpf.core.outputs.Output#
Allows to get dnz_y output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dnz_y = op.outputs.dnz_y()
- property OutputsTransformInvariantTermsRbd.dyx_n: ansys.dpf.core.outputs.Output#
Allows to get dyx_n output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dyx_n = op.outputs.dyx_n()
- property OutputsTransformInvariantTermsRbd.dyy_n: ansys.dpf.core.outputs.Output#
Allows to get dyy_n output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dyy_n = op.outputs.dyy_n()
- property OutputsTransformInvariantTermsRbd.dyz_n: ansys.dpf.core.outputs.Output#
Allows to get dyz_n output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dyz_n = op.outputs.dyz_n()
- property OutputsTransformInvariantTermsRbd.dnxn: ansys.dpf.core.outputs.Output#
Allows to get dnxn output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dnxn = op.outputs.dnxn()
- property OutputsTransformInvariantTermsRbd.dnyn: ansys.dpf.core.outputs.Output#
Allows to get dnyn output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dnyn = op.outputs.dnyn()
- property OutputsTransformInvariantTermsRbd.dnzn: ansys.dpf.core.outputs.Output#
Allows to get dnzn output of the operator
- Returns:
An Output instance for this pin.
- Return type:
output
Examples
>>> from ansys.dpf import core as dpf >>> op = dpf.operators.result.transform_invariant_terms_rbd() >>> # Get the output from op.outputs. ... >>> result_dnzn = op.outputs.dnzn()
Method detail#
- OutputsTransformInvariantTermsRbd.__str__()#