Draft: ENH: fieldStatistics: New function object for statistics of input fields
Summary
This update introduces a new function object, fieldStatistics
, which is expected to replace the fieldMinMax
function object in future releases.
Details of new models
A typical example of the new keywords is as follows:
fieldStatistics
{
// Mandatory entries
type fieldStatistics;
libs (fieldFunctionObjects);
fields (p U k Co);
statistics (mean variance min max);
// Optional entries
mode magnitude; // component;
mean arithmetic; // volumetric;
extrema true;
internal false;
// Inherited entries
writePrecision 8;
writeToFile true;
useUserTime true;
region region0;
enabled true;
log true;
timeStart 0;
timeEnd 1000;
executeControl timeStep;
executeInterval 1;
writeControl writeTime;
writeInterval 1;
}
The following functionalities can be highlighted:
- The
fieldMinMax
functionality, i.e. providing the extrema values of the input fields and their metadata, can be reproduced by the optional bool keywordextrema
. - The internal fields, i.e. excluding the boundary fields, are handled by the optional bool keyword
internal
. - Two different averaging routines can be chosen, i.e.
arithmetic
andvolumetric
, by the keywordmean
. - Four statistics of the input fields can be calculated:
- Central-tendency statistics:
mean
. - Dispersion statistics:
variance
,min
,max
.
- Central-tendency statistics:
- The statistics are output to a file per input field and to the standard stream with uniform delimiter.
Risks
- When using
mode=magnitude
, thefieldStatistics
function object (FO) calculates the statistics of the magnitude of the input fields, rather than the magnitude of the statistics of the input fields. The effect ofmode=magnitude
in thefieldMinMax
FO differs in thatmode=magnitude
andmode=component
behave identically for scalar fields.- For example, in a scalar field with two values, -1 and 1, the
fieldMinMax
FO with eithermode=magnitude
ormode=component
producesmin=-1
. This happens because, for scalar fields, the mode is always treated ascomponent
, even ifmode=magnitude
is input. - However, in
fieldStatistics
's backward-compatibility forfieldMinMax
by setting theextrema=true
, this behavior is different:- With
mode=magnitude
, the minimum value is computed asmin=1
. - With
mode=component
, the minimum value is computed asmin=-1
for the scalar field.
- With
- For example, in a scalar field with two values, -1 and 1, the
- Unlike the
fieldMinMax
, thefieldStatistics
's backward-compatibility forfieldMinMax
outputs the extrema data per field, rather than a single file for all fields. - Stable algorithms for the calculation of
variance
need to be investigated.
Merge request reports
Activity
added post-processing label
requested review from @mark
assigned to @andy
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
I know it goes against what you commonly find within our existing code base, but since all the template methods are actually only private, they should NOT be exposed from the header.
Instead, rename the xxxTemplates.C file to something like xxxImpl.C (or xxxImpl.cxx is even better) and include that from within the regular code.
See for example: src/fileFormats/vtk/part/foamVtuSizing.C, src/functionObjects/field/multiFieldValue/multiFieldValue.C
The reason that
.cxx
is even better is that it will also not automatically pollute thelnInclude/
directory.Edited by Mark OLESEN
- Resolved by Kutalmış Berçin
- Resolved by Mark OLESEN
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
added 8 commits
-
e900f3ee...2d246cd5 - 5 commits from branch
develop
- 97044901 - WIP: fieldStatistics: new function object
- f17efd1b - WIP: fieldStatistics: introduce flag to process internal fields only
- 3876b5d2 - WIP: fieldStatistics: add volume-weighted average to the options
Toggle commit list-
e900f3ee...2d246cd5 - 5 commits from branch
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin
- Resolved by Kutalmış Berçin