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

noiseModel      pointNoise;

pointNoiseCoeffs
{
    windowModel     Hanning;

    HanningCoeffs
    {
        // Window overlap percentage
        overlapPercent  50;
        symmetric       yes;
        extended        yes;

        // Optional number of windows, default = all available
        //nWindow         5;
    }

    files
    (
        "postProcessing/probes/0/p"
        "postProcessing/probes/0.1/Curle"
    );

    nHeaderLine     6;
    refColumn       0;
    componentColumns (1);
    mergeSeparators yes;
    separator       " ";

    // Number of samples in sampling window
    // default = 2^16 (=65536)
    N               4096;

    rhoRef          1.205;
}


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