Skip to content
Snippets Groups Projects
reactingCloud1Properties 3.6 KiB
Newer Older
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
henry's avatar
henry committed
|  \\    /   O peration     | Version:  dev                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant";
    object      reactingCloud1Properties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solution
{
    active          true;
    coupled         false;
    transient       yes;
    cellValueSourceCorrection off;
    sourceTerms
    {
        rho
        {
            semiImplicit    false;
        }
        U
        {
            semiImplicit    false;
        }
        Yi
        {
            semiImplicit    false;
        }
        hs
        {
            semiImplicit    false;
        }
    }

    interpolationSchemes
    {
        rho             cell;
        U               cellPoint;
        mu              cell;
        T               cell;
        Cp              cell;
        p               cell;
    }

    integrationSchemes
    {
        U               Euler;
        T               Euler;
    }
}
    rhoMin          1e-15;
    TMin            200;
    pMin            1000;
    minParticleMass 1e-15;
    Cp0             4100;
    Tvap            284;
    Tbp             373;
    Pr              0.7;
    LDevol          0;
    hRetentionCoeff 1;
    particleForces
    {
        activeForces
        (
            sphereDrag
            gravity
        );
    }

andy's avatar
andy committed
    injectionModel  manualInjection;
andy's avatar
andy committed
    dispersionModel none;
andy's avatar
andy committed
    patchInteractionModel standardWallInteraction;
andy's avatar
andy committed
    heatTransferModel RanzMarshall;
andy's avatar
andy committed
    compositionModel singleMixtureFraction;
andy's avatar
andy committed
    phaseChangeModel liquidEvaporation;
andy's avatar
andy committed
    devolatilisationModel none;
andy's avatar
andy committed
    surfaceReactionModel none;
andy's avatar
andy committed
    postProcessingModel none;
andy's avatar
andy committed
    surfaceFilmModel none;
andy's avatar
andy committed
    manualInjectionCoeffs
        massTotal       5.23599e-10; // 1 droplet of density 1000 kg/m3
        parcelBasisType mass;
        SOI             0;
        positionsFile   "reactingCloud1Positions";
        U0              (0 0 0);
andy's avatar
andy committed
            type uniform;
            uniformDistribution
            {
                minValue        100e-06;
                maxValue        100e-06;
            }
andy's avatar
andy committed

    standardWallInteractionCoeffs
    RanzMarshallCoeffs
    {
        BirdCorrection  off;
    }
andy's avatar
andy committed
    singleMixtureFractionCoeffs
andy's avatar
andy committed
    liquidEvaporationCoeffs
    {
        enthalpyTransfer enthalpyDifference; // latentHeat;
        activeLiquids   ( H2O );
}


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