faceToNodeVec

faceToNodeVec

Works with VSimBase, VSimEM, VSimPD, VSimPA, and VSimVE licenses.

MultiField updater that interpolates field components between grid faces and nodes.

faceToNodeVec Parameters

The faceToNodeVec updater takes the lowerBounds and upperBounds parameters of FieldUpdater, as well as the following parameters:

readFields (required string vector)

A vector containing a single element, the name of the field to interpolate.

writeFields (required string vector)

A vector containing a single element, the name of field to update with the interpolated values.

nodeToFace (optional integer, default = 0 (false))

If true, the updater interpolates from nodes to faces. By default, the updater interpolates from faces to nodes.

Example faceToNodeVec Block

<FieldUpdater nodalBupdate>
  kind                     = faceToNodeVec
  lowerBounds              = [  0   0   0]
  upperBounds              = [NX1 NY1 NZ1]
  readFields               = [magField]
  writeFields              = [nodalB]
</FieldUpdater>