Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / reactingParcelFilmFoam / splashPanel / constant / reactingCloud1Properties
blob13d0f56c2ab402d52a24875fbdf7111fdb171321
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      reactingCloud1Properties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solution
20     active          true;
21     coupled         no;
22     transient       yes;
23     cellValueSourceCorrection no;
25     sourceTerms
26     {
27         schemes
28         {
29             rho             explicit 1;
30             U               explicit 1;
31             Yi              explicit 1;
32             hs              explicit 1;
33         }
34     }
36     interpolationSchemes
37     {
38         rho             cell;
39         U               cellPoint;
40         mu              cell;
41         T               cell;
42         Cp              cell;
43         p               cell;
44     }
46     integrationSchemes
47     {
48         U               Euler;
49         T               analytical;
50     }
53 constantProperties
55     parcelTypeId    1;
57     rhoMin          1e-15;
58     TMin            200;
59     pMin            1000;
60     minParticleMass 1e-15;
62     rho0            1000;
63     T0              300;
64     Cp0             4187;
66     youngsModulus   1e9;
67     poissonsRatio   0.35;
69     epsilon0        1;
70     f0              0.5;
71     Pr              0.7;
72     Tvap            273;
73     Tbp             373;
75     constantVolume  false;
78 subModels
80     particleForces
81     {
82         sphereDrag;
83         gravity;
84     }
86     injectionModel  reactingLookupTableInjection;
88     dispersionModel none;
90     patchInteractionModel standardWallInteraction;
92     heatTransferModel none;
94     compositionModel singlePhaseMixture;
96     phaseChangeModel none;
98     surfaceFilmModel thermoSurfaceFilm;
100     radiation       off;
102     reactingLookupTableInjectionCoeffs
103     {
104         massTotal       0.1;
105         parcelBasisType mass;
106         SOI             0.01;
107         inputFile       "parcelInjectionProperties";
108         duration        10.0;
109         parcelsPerSecond 200;
110     }
112     standardWallInteractionCoeffs
113     {
114         type            rebound;
115     }
117     singlePhaseMixtureCoeffs
118     {
119         phases
120         (
121             liquid
122             {
123                 H2O          1;
124             }
125         );
126     }
128     thermoSurfaceFilmCoeffs
129     {
130         interactionType splashBai;
131         deltaWet        0.0005;
132         dMinSplash      1e-5;
133         dMaxSplash      1e-3;
134         Adry            2630;
135         Awet            1320;
136         Cf              0.6;
137     }
141 cloudFunctions
145 // ************************************************************************* //