Skip to main content

DPF Framework 2025 R2

averaging:elemental to elemental nodal (field)

Last update: 03.06.2026

Version: 0.0.0

Description

Transforms an Elemental field to an Elemental Nodal field.

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)
0 field Required field, fields_container
1 mesh_scoping scoping
7 mesh abstract_meshed_region

field (Pin 0)

field or fields container with only one field is expected

mesh_scoping (Pin 1)

  • Required: No
  • Expected type(s): scoping

average only on these entities

mesh (Pin 7)

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 field field

field (Pin 0)

  • Expected type(s): field

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: averaging

Plugin: core

Scripting name: elemental_to_elemental_nodal

Full name: averaging.elemental_to_elemental_nodal

Internal name: elemental_to_elemental_nodal

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("elemental_to_elemental_nodal"); // operator instantiation
op.connect(0, my_field);
op.connect(1, my_mesh_scoping);
op.connect(7, my_mesh);
ansys::dpf::Field my_field = op.getOutput<ansys::dpf::field>(0);

</ansys::dpf::field>

CPython
import ansys.dpf.core as dpf

op = dpf.operators.averaging.elemental_to_elemental_nodal() # operator instantiation
op.inputs.field.connect(my_field)
op.inputs.mesh_scoping.connect(my_mesh_scoping)
op.inputs.mesh.connect(my_mesh)
my_field = op.outputs.field()
IPython
import mech_dpf
import Ans.DataProcessing as dpf

op = dpf.operators.averaging.elemental_to_elemental_nodal() # operator instantiation
op.inputs.field.Connect(my_field)
op.inputs.mesh_scoping.Connect(my_mesh_scoping)
op.inputs.mesh.Connect(my_mesh)
my_field = op.outputs.field.GetData()

Changelog

  • Version 0.0.0: Initial release.

Connect with Ansys