ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / utilities / postProcessing / miscellaneous / pdfPlot / pdfDict
blobafbb3597795f15a3876211e11b4282c1e2195380
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      pdfDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Number of intervals/bins in pdf plot
18 nIntervals      20;
20 // Number of samples
21 nSamples        10000;
23 // Type of pdf
24 pdfType         RosinRammler;
26 // Write data flag
27 writeData       true;
29 // PDF model coefficients
30 RosinRammlerPDF
32     minValue        1e-06;
33     maxValue        200e-06;
34     d               (60.0e-06);
35     n               (0.8);
38 // ************************************************************************* //