ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / field / fieldCoordinateSystemTransform / postProcessingDict
blobe0d17f6271ab7d9e767ffe454713e2c917eaae7e
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  dev                                   |
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      postProcessingDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 functions
19     fieldCoordinateSystemTransform1
20     {
21         // Type of functionObject
22         type            fieldCoordinateSystemTransform;
24         // Where to load it from (if not already in solver)
25         functionObjectLibs ("libfieldCoordinateSystemTransform.so");
27         // Function object enabled flag
28         enabled         true;
30         // When to output the average fields
31         outputControl   outputTime;
33         // Fields to be transformed - runTime modifiable
34         fields
35         (
36             U
37             UMean
38             UPrime2Mean
39         );
41         coordinateSystem
42         {
43             origin  (0.001  0       0);
44             e1      (1      0.15    0);
45             e3      (0      0      -1);
46         }
47     }
50 // ************************************************************************* //