Skip to main content

DPF Mechanical 2026 R1

centroid class

Last update: 18.06.2026

Namespace: Ans.DataProcessing.operators.math

Summary

Computes centroid of field1 and field2, using fieldOut = field1*(1.-fact)+field2*(fact). Only works by index.

available inputs: fieldA (Field, FieldsContainer), fieldB (Field, FieldsContainer), factor (double)

available outputs: field (Field)

Example

op = centroid()

op = centroid(fieldA=my_fieldA,fieldB=my_fieldB,factor=my_factor)

Class Information

Property Value
Namespace Ans.DataProcessing.operators.math
Assembly Ans_Dpf_Native_dll_cs
Base Class Ans.DataProcessing.internal_objects.BaseOperator

Inputs

fieldA

field or fields container with only one field is expected

Type: LinkableInput

fieldB

field or fields container with only one field is expected

Type: LinkableInput

factor

Scalar

Type: LinkableInput

Outputs

field

Field with centroid calculation: fieldA*(1-factor) + fieldB*factor

Type: LinkableOutput

Constructors

Constructor

centroid()

Constructor

centroid(fieldA, fieldB, factor, config)

Parameters:

  • fieldA (object)
  • fieldB (object)
  • factor (object)
  • config (OperatorConfig)

Constructor

centroid(config)

Parameters:

  • config (OperatorConfig)

Methods

Properties

inputs

Type: InputSpec

# Get or set the property
value = obj.inputs
obj.inputs = new_value

outputs

Type: OutputSpec

# Get or set the property
value = obj.outputs
obj.outputs = new_value

defaultConfig

Type: Config

# Get the property (read-only)
value = obj.defaultConfig

Connect with Ansys