ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / field / nearWallFields / controlDict
blobdde6e3740f88204b8aea21ab4e8fbac2ff037401
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      controlDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 application     icoFoam;
19 startFrom       startTime;
21 startTime       0;
23 stopAt          endTime;
25 endTime         0.5;
27 deltaT          0.005;
29 writeControl    timeStep;
31 writeInterval   20;
33 purgeWrite      0;
35 writeFormat     ascii;
37 writePrecision  6;
39 writeCompression off;
41 timeFormat      general;
43 timePrecision   6;
45 runTimeModifiable true;
47 functions
49     near
50     {
51         // Where to load it from                                                                                                                                                             
52         functionObjectLibs ("libfieldFunctionObjects.so");
54         type nearWallFields;
56         // Output every
57         outputControl outputTime; //timeStep;
58         //outputInterval 5;
60         // Fields to be sampled. Per field original name and mapped field to
61         // create.
62         fields
63         (
64             (p pNear)
65             (U UNear)
66         );
68         // Patches to sample (regular expressions)
69         patches ("movingWall");
71         // Distance to sample
72         distance 0.009;
73     }
77 // ************************************************************************* //