/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2212                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     sonicFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         0.015;

deltaT          0.00000025;	

writeControl    runTime;

writeInterval   0.0015;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable true;


    functions
{   
   
#includeFunc solverInfo;



   forces
    {
        type forces;
        libs ("libforces.so");
        executeControl    timeStep;
        executeInterval   5000;
        writeControl      runTime;
        writeInterval     0.000005;
        patches        (obstacle);
        CofR           (0 0 0);
        liftDir        (0 1 0);
        dragDir        (1 0 0);
        magUInf        1715;
        lRef           1;
        rho         rhoInf;
	rhoInf      1.176407;
    }

    forceCoeffs   
    {
        type forceCoeffs;
        libs ("libforces.so");
        executeControl    timeStep;
        executeInterval   5000;
        writeControl      runTime;
        writeInterval     0.000005;
        patches        (obstacle);
        CofR           (0 0 0);
        liftDir        (0 1 0);
        dragDir        (1 0 0);
        magUInf        1715;
        lRef           1;
        Aref           0.3927;
        rho         rhoInf;
	rhoInf      1.176407;
    }
}



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