MAIA bb96820c
Multiphysics at AIA
|
This Post-Processing operation performs a temporal average on the primitive variables of the assigned solver starting at the timestep pp_averageStartTimestep
until pp_averageStopTimestep
with an interval of pp_averageInterval
.
The operation is triggered by setting one of the following properties
The PRE
and POST
modes require restart files of the averaging timesteps.
The IN
mode performs averaging done during the solver run, which does not require restartfiles.
Without setting any other property, only the temporal average is calculated for the primitive variables. The average variables will be stored in restartFile_<postdataId>_<globaltimestep>.Netcdf
, which will be named "um", "vm", "wm"(3D), "rhom", "pm"
.
This property triggers the calculation of the Reynold stresses
\(\left(\begin{array}{ccc}
\overline{u^\prime u^\prime} & \overline{u^\prime v^\prime} & \overline{u^\prime w^\prime} \\
\overline{v^\prime u^\prime} & \overline{v^\prime v^\prime} & \overline{v^\prime w^\prime} \\
\overline{w^\prime u^\prime} & \overline{w^\prime v^\prime} &\overline{w^\prime w^\prime}
\end{array}\right)\)
as well as \(\overline{p^\prime p^\prime}\).
Increase the number of allocated variables of the postData (noVariables.<postdataId>
) solver by 7.
This property determines if skewness is computed.
Increase the number of allocated variables of the postData (noVariables.<postdataId>
) solver by 3.
This property determines if kurtosis (and skewness) is computed.
Increase the number of allocated variables of the postData (noVariables.<postdataId>
) solver by 3.
This property determines if the vorticity is included in the calculation.
Increase the number of allocated variables of the postData (noVariables.<postdataId>
) solver by nDim * 2 - 3
.
Increase the number of allocated variables of the postData (noVariables.<postdataId>
) solver by 1 + nDim
.
In order to reduce rounding/truncation errors either activate kahan summation, which requires more memory, or two-pass mode, with a higher time cost. Two-pass is not applicable for the IN mode, since mean values are required for computation.
Set the following properties as shown to restart the temporal average:
The following example restarts a temporal average calculation of a FV-Solver. In this example the restartTimeStep
is between 100000 and 200000.