/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2006                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

forces
{
    type            forceCoeffs;
    libs            (forces);
    writeControl    timeStep;
    writeInterval   1;

    patches         (Airfoil airfoil airfoil_slat airfoil_main airfoil_flap);  // Where to compute lift and drag
    rho             rhoInf;      // Indicates incompressible
    log             false;
    rhoInf          1.; // Required when rho = rhoInf
    liftDir         (0 1 0);
    dragDir         (1 0 0);
    CofR            (0 0 0);
    pitchAxis       (0 0 1);
    magUInf         1.;
    lRef            1.; // Reference length (c=1)
    Aref            1.; // Reference area (c=1, width=1)
}


// ************************************************************************* //
