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

forceCoeffs1
{
    type            forceCoeffs;

    libs            ("libforces.so");

    writeControl    timeStep;
    timeInterval    1;

    log             yes;

    patches         (projectile);
    //rho             rhoInf;       Used when flow is incompressible
    rhoInf          1.225;         // Required when rho = rhoInf
    liftDir         (0 1 0);
    dragDir         (1 0 0);
    CofR            (0 0 0);  
    pitchAxis       (0 0 1);
    magUInf         700;
    lRef            0.044;        // Bullet length
    Aref            5.808e-5;     // frontal cross section area of bullet
    /*
    binData
    {
        nBin        20;           // output data into 20 bins
        direction   (1 0 0);      // bin direction
        cumulative  yes;
    }
    */
}


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