Skip to main content

DPF Framework 2025 R2

result:stress solution to global cs

Last update: 03.06.2026

Version: 0.0.0

Description

read Euler angles on elements from the result file and rotate the fields in the fieldsContainer.

Inputs

This table lists the input pins for this operator. Input pins define the data that the operator requires to perform its operation. Some inputs are required, while others are optional and provide additional configuration. Each parameter is detailed in the sections that follow the table.

Pin number Name Status Expected type(s)
2 fields_container fields_container
3 streams_container streams_container, stream, class dataProcessing::CRstFileWrapper
4 data_sources Required data_sources

fields_container (Pin 2)

streams_container (Pin 3)

  • Required: No
  • Expected type(s): streams_container, stream, class dataProcessing::CRstFileWrapper

data_sources (Pin 4)

Outputs

This table lists the output pins for this operator. Output pins provide the results of the operator's computation and can be connected to inputs of other operators or retrieved for further processing. Each output is detailed in the sections that follow the table.

Pin number Name Expected type(s)
0 fields_container fields_container

fields_container (Pin 0)

Configurations

This operator supports configuration options that modify its behavior.

mutex

  • Expected type(s): bool
  • Default value: false

If this option is set to true, the shared memory is prevented from being simultaneously accessed by multiple threads.

Scripting

This operator can be accessed through scripting interfaces using these identifiers.

Category: result

Plugin: mapdl

Scripting name: stress_rotation_by_euler_nodes

Full name: result.stress_rotation_by_euler_nodes

Internal name: mapdl::rst::S_rotation_by_euler_nodes

License: None

Examples

These examples demonstrate how to use this operator in different programming environments. Each example shows how to instantiate the operator, connect the required inputs, and retrieve the output.

C++
#include "dpf_api.h"

ansys::dpf::Operator op("mapdl::rst::S_rotation_by_euler_nodes"); // operator instantiation
op.connect(2, my_fields_container);
op.connect(3, my_streams_container);
op.connect(4, my_data_sources);
ansys::dpf::FieldsContainer my_fields_container = op.getOutput<ansys::dpf::fieldscontainer>(0);

</ansys::dpf::fieldscontainer>

CPython
import ansys.dpf.core as dpf

op = dpf.operators.result.stress_rotation_by_euler_nodes() # operator instantiation
op.inputs.fields_container.connect(my_fields_container)
op.inputs.streams_container.connect(my_streams_container)
op.inputs.data_sources.connect(my_data_sources)
my_fields_container = op.outputs.fields_container()
IPython
import mech_dpf
import Ans.DataProcessing as dpf

op = dpf.operators.result.stress_rotation_by_euler_nodes() # operator instantiation
op.inputs.fields_container.Connect(my_fields_container)
op.inputs.streams_container.Connect(my_streams_container)
op.inputs.data_sources.Connect(my_data_sources)
my_fields_container = op.outputs.fields_container.GetData()

Changelog

  • Version 0.0.0: Initial release.

Connect with Ansys