Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / lagrangian / reactingParcelFoam / evaporationTest / constant / reactingCloud1Properties
blob2d85c5d1d6a5040d644dc2fd6b5a014d929cad13
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      reactingCloud1Properties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 active          true;
20 InjectionModel  ManualInjection;
22 DragModel       SphereDrag;
24 DispersionModel none;
26 PatchInteractionModel StandardWallInteraction;
28 HeatTransferModel RanzMarshall;
30 CompositionModel SinglePhaseMixture;
32 PhaseChangeModel LiquidEvaporation;
34 PostProcessingModel none;
36 radiation       off;
38 coupled         true;
40 cellValueSourceCorrection on;
42 parcelTypeId    1;
44 constantProperties
46     rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
47     TMin            TMin [ 0 0 0 1 0 ] 200;
48     pMin            pMin [ 1 -1 2 0 0 ] 1000;
49     rho0            rho0 [ 1 -3 0 0 0 ] 1000;
50     minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
51     T0              T0 [ 0 0 0 1 0 ] 300;
52     cp0             cp0 [ 0 2 -2 -1 0 ] 4187;
53     epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
54     f0              f0 [ 0 0 0 0 0 ] 0.5;
55     Pr              Pr [ 0 0 0 0 0 ] 0.7;
56     Tvap            Tvap [ 0 0 0 1 0 ] 273;
57     Tbp             Tvap [ 0 0 0 1 0 ] 373;
58     constantVolume  false;
61 interpolationSchemes
63     rho             cell;
64     U               cellPointFace;
65     mu              cell;
66     T               cell;
67     Cp              cell;
68     p               cell;
71 integrationSchemes
73     U               Euler;
74     T               Analytical;
77 particleForces
79     gravity         off;
80     virtualMass     off;
81     pressureGradient off;
84 ManualInjectionCoeffs
86     massTotal       massTotal [ 1 0 0 0 0 ] 1e-8;
87     parcelBasisType mass;
88     SOI             0;
89     positionsFile   "reactingCloud1Positions";
90     U0              ( 0 0 0 );
91     parcelPDF
92     {
93         pdfType         uniform;
94         uniformPDF
95         {
96             minValue        1e-04;
97             maxValue        1e-04;
98         }
99     }
102 StandardWallInteractionCoeffs
104     type            rebound;
107 RanzMarshallCoeffs
109     // thermal shielding
110     BirdCorrection  true;
113 SinglePhaseMixtureCoeffs
115     phases
116     (
117         liquid
118         {
119             H2O 1;
120         }
121     );
124 LiquidEvaporationCoeffs
126     enthalpyTransfer enthalpyDifference;
128     activeLiquids
129     (
130         H2O
131     );
134 // ************************************************************************* //