-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconditionalAverageDict
36 lines (30 loc) · 1.56 KB
/
conditionalAverageDict
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location system;
object conditionalAverage;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
enabled true;
type conditionalAverage;
libs ("libconditionalAverage.so");
regionType all;//;cellZone;
//name ignitionCells;//give a specific region to postProcess
writeFormat raw;
conditionalFields (Z); // Must be volScalarField, can also be 'x','y','z','direction'.
weightedAveragedField meshV;//rhoMeshV;none;meshV
//directionVector (1 1 1); // If conditionalFields contains 'direction', a directionVector will be needed
nBins 20;
//maxValue 1;//The first column of output file is within [minValue, maxValue],divided into nBins number of equal parts
//minValue 0;//If the maxValue and the minValue is not presented, the max and min of the conditionalFields will be used instead
// The number of sampled data, the conditionalFields are averaged devided into nBins, [min:(max-min)/nBins:max].
averagedFields ( U C7H16 OH meanChemistryHRR );