BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / compressible / sonicFoam / ras / nacaAirfoil / system / controlDict
blobf6a770b15ddbc38b64879014dedafeeccf5b75d6
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     location    "system";
14     object      controlDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 application     sonicFoam;
20 startFrom       latestTime;
22 startTime       0;
24 stopAt          endTime;
26 endTime         0.01;
28 deltaT          4e-08;
30 writeControl    runTime;
32 writeInterval   2e-04;
34 purgeWrite      0;
36 writeFormat     ascii;
38 writePrecision  6;
40 writeCompression off;
42 timeFormat      general;
44 timePrecision   6;
46 runTimeModifiable true;
48 functions
50     forces
51     {
52         type            forceCoeffs;
53         functionObjectLibs ( "libforces.so" );
54         outputControl   timeStep;
55         outputInterval  1;
57         patches
58         (
59             WALL10
60         );
62         pName       p;
63         UName       U;
64         log         true;
65         rhoInf      1;
66         CofR        ( 0 0 0 );
67         liftDir     ( -0.239733 0.970839 0 );
68         dragDir     ( 0.970839 0.239733 0 );
69         pitchAxis   ( 0 0 1 );
70         magUInf     618.022;
71         lRef        1;
72         Aref        1;
73     }
76 // ************************************************************************* //