Skip to main content

magSqr

Description

The magSqr function object computes the magnitude of the square of an input field.

Operands

OperandTypeLocation
input{vol,surface}<Type>Field$FOAM_CASE/<time>/<inpField>
output file--
output field{vol,surface}ScalarField$FOAM_CASE/<time>/<outField>

where <Type>=Scalar/Vector/SphericalTensor/SymmTensor/Tensor.

Usage

Example of the magSqr function object by using functions sub-dictionary in system/controlDict file:

magSqr1
{
// Mandatory entries (unmodifiable)
type magSqr;
libs (fieldFunctionObjects);

// Mandatory (inherited) entries (runtime modifiable)
field <inpField>;

// Optional (inherited) entries
result <fieldResult>;
region region0;
enabled true;
log true;
timeStart 0;
timeEnd 1000;
executeControl timeStep;
executeInterval 1;
writeControl timeStep;
writeInterval 1;
}

where the entries mean:

PropertyDescriptionTypeRequiredDefault
typeType name: magSqrwordyes-
libsLibrary name: fieldFunctionObjectswordyes-
fieldName of the operand fieldwordyes-

The inherited entries are elaborated in:

Example by using the postProcess utility:

postProcess -func "magSqr(<field>)"

Further information

Tutorial:

Source code:

API:

History: Introduced in version v1606+