Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / coalChemistryFoam / simplifiedSiwek / constant / coalCloud1Properties
blobebab7d81dcb03fe0c3ba2202c397c1e7b77bc0a2
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      coalCloud1Properties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solution
20     active          true;
21     transient       yes;
22     coupled         true;
23     cellValueSourceCorrection on;
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         G               cell;
45     }
47     integrationSchemes
48     {
49         U               Euler;
50         T               analytical;
51     }
54 constantProperties
56     parcelTypeId    1;
58     rhoMin          1e-15;
59     TMin            200;
60     pMin            1000;
61     minParticleMass 1e-15;
63     rho0            1000;
64     T0              300;
65     Cp0             4187;
67     youngsModulus   2e9;
68     poissonsRatio   0.35;
70     epsilon0        1;
71     f0              0.5;
73     Pr              0.7;
74     Tvap            400;
75     Tbp             400;
76     LDevol          0;
77     hRetentionCoeff 1;
79     constantVolume  true;
82 subModels
84     particleForces
85     {
86         sphereDrag;
87         gravity;
88     }
90     injectionModel  manualInjection;
92     dispersionModel stochasticDispersionRAS;
94     patchInteractionModel standardWallInteraction;
96     heatTransferModel RanzMarshall;
98     compositionModel singleMixtureFraction;
100     phaseChangeModel liquidEvaporation;
102     devolatilisationModel constantRateDevolatilisation;
104     surfaceReactionModel COxidationKineticDiffusionLimitedRate;
106     surfaceFilmModel none;
108     radiation       on;
110     manualInjectionCoeffs
111     {
112         massTotal       0.0001;
113         parcelBasisType mass;
114         SOI             0;
115         positionsFile   "coalCloud1Positions";
116         U0              ( 0 -10 0 );
117         sizeDistribution
118         {
119             type        RosinRammler;
120             RosinRammlerDistribution
121             {
122                 minValue        5e-06;
123                 maxValue        0.0005;
124                 d               5e-05;
125                 n               0.5;
126             }
127         }
128     }
130     standardWallInteractionCoeffs
131     {
132         type            rebound;
133         e               1;
134         mu              0;
135     }
137     RanzMarshallCoeffs
138     {
139         BirdCorrection  true;
140     }
142     singleMixtureFractionCoeffs
143     {
144         phases
145         (
146             gas
147             {
148                 CH4             0.604;
149                 H2              0.099;
150                 CO2             0.297;
151             }
152             liquid
153             {
154                 H2O             1;
155             }
156             solid
157             {
158                 ash             0.136304;
159                 C               0.863696;
160             }
161         );
162         YGasTot0        0.211;
163         YLiquidTot0     0.026;
164         YSolidTot0      0.763;
165     }
167     liquidEvaporationCoeffs
168     {
169         enthalpyTransfer enthalpyDifference;
171         activeLiquids
172         (
173             H2O
174         );
175     }
177     constantRateDevolatilisationCoeffs
178     {
179         volatileData
180         (
181             (CH4            12)
182         );
183         residualCoeff   0.001;
184     }
186     COxidationKineticDiffusionLimitedRateCoeffs
187     {
188         Sb              1;
189         C1              5.0E-12;
190         C2              0.002;
191         E               7.9E+07;
192     }
196 cloudFunctions
200 // ************************************************************************* //