Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / motorBike / system / forceCoeffs
blobf864b05db94d31af0aac57482a7c716342cb24a8
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.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 forces
11     type        forceCoeffs;
12     functionObjectLibs ( "libforces.so" );
13     outputControl timeStep;
14     outputInterval 1;
16     patches     ( "motorBike.*" );
17     pName       p;
18     UName       U;
19     rhoName     rhoInf;      // Indicates incompressible
20     log         true;
21     rhoInf      1;           // Redundant for incompressible
22     liftDir     (0 0 1);
23     dragDir     (1 0 0);
24     CofR        (0.72 0 0);  // Axle midpoint on ground
25     pitchAxis   (0 1 0);
26     magUInf     20;
27     lRef        1.42;        // Wheelbase length
28     Aref        0.75;        // Estimated
32 // ************************************************************************* //