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

solution
{
    active          true;
    coupled         false;
    transient       yes;
    cellValueSourceCorrection no;
    maxCo           0.5;

    sourceTerms
    {
        schemes
        {
            U               semiImplicit 1;
        }
    }

    interpolationSchemes
    {
        rho             cell;
        U               cell;
        mu              cell;
    }

    integrationSchemes
    {
        U               Euler;
    }
}

constantProperties
{
    rho0            1000;
}

subModels
{
    particleForces
    {
        sphereDrag;
        gravity;
    }

    injectionModels
    {
        model1
        {
            type            patchInjection;
            parcelBasisType fixed;
            SOI             0.0;
            duration        16.000;
            
            patch       inletPipe;
            patchName   inletPipe;
            massTotal       5;
            parcelsPerSecond 10000;
            nParticle   1;
            flowRateProfile constant 1;
            U0      (0 0 3e-2);
            sizeDistribution
            {
                type         fixedValue;
                fixedValueDistribution
                {
                    value               1e-5;
                }
            }
        }
    }

    dispersionModel none;

    patchInteractionModel standardWallInteraction;
    // patchInteractionModel   localInteraction;
    /*localInteractionCoeffs
    {
        patches
        (
            "(inlet|latticeStructure)"
            {
                type        rebound;
                e           1;          // normal restitution coefficient
                mu          0;      // tangential restitution coefficient
            }
            "(outlet|left|right|top|bottom)"
            {
                type        escape;
            }
        );
    } */
    
    stochasticCollisionModel none;

    surfaceFilmModel none;

    collisionModel none;

    standardWallInteractionCoeffs
    {
        type            rebound;
        e               0.6;
        mu              0.09;
        UrMax           1e-4;
    }
}


cloudFunctions
{}


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