    

 ## On this page

  

 

 # averaging:elemental nodal to nodal elemental (field)

 Last update: 03.06.2026 

**Version: 0.0.0**

## Description

Transforms an Elemental Nodal field to Nodal Elemental. The result is computed on a given node's scoping.

## 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 numberNameStatusExpected type(s)0[field](#input_0)Required[`field`](../../core-concepts/dpf-types.md#field), [`fields_container`](../../core-concepts/dpf-types.md#fields-container)**1**[mesh\_scoping](#input_1)[`scoping`](../../core-concepts/dpf-types.md#scoping)<a id="input_0"></a>

### field (Pin 0)

- **Required:** Yes
- **Expected type(s):** [`field`](../../core-concepts/dpf-types.md#field), [`fields_container`](../../core-concepts/dpf-types.md#fields-container)

field or fields container with only one field is expected

<a id="input_1"></a>

### mesh\_scoping (Pin 1)

- **Required:** No
- **Expected type(s):** [`scoping`](../../core-concepts/dpf-types.md#scoping)

## 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 numberNameExpected type(s)0[field](#output_0)[`field`](../../core-concepts/dpf-types.md#field)<a id="output_0"></a>

### field (Pin 0)

- **Expected type(s):** [`field`](../../core-concepts/dpf-types.md#field)

## Configurations

This operator supports [configuration options](../../core-concepts/operator-configurations.md) that modify its behavior.

### [mutex](../../core-concepts/operator-configurations.md#mutex)

- **Expected type(s):** [`bool`](../../core-concepts/dpf-types.md#standard-types)
- **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\_nodal\_to\_nodal\_elemental

**Full name**: averaging.elemental\_nodal\_to\_nodal\_elemental

**Internal name**: ElementalNodal\_To\_NodalElemental

**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++```cpp
#include "dpf_api.h"

ansys::dpf::Operator op("ElementalNodal_To_NodalElemental"); // operator instantiation
op.connect(0, my_field);
op.connect(1, my_mesh_scoping);
ansys::dpf::Field my_field = op.getOutput<ansys::dpf::field>(0);

```

&lt;/ansys::dpf::field&gt;

CPython```python
import ansys.dpf.core as dpf

op = dpf.operators.averaging.elemental_nodal_to_nodal_elemental() # operator instantiation
op.inputs.field.connect(my_field)
op.inputs.mesh_scoping.connect(my_mesh_scoping)
my_field = op.outputs.field()

```

IPython```python
import mech_dpf
import Ans.DataProcessing as dpf

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

```

  
## Changelog

- Version 0.0.0: Initial release.