no blockMesh
[OpenFOAM-1.5.x.git] / tutorials / rhoTurbTwinParcelFoam / simplifiedSiwek / constant / thermoCloud1Properties
blob0ad5e425cd23a5bebdc5ad09c4fedd1125286f43
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      thermoCloud1Properties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Particle sub-models
18 InjectionModel                           ManualInjection;
19 DragModel                                SphereDrag;
20 DispersionModel                          StochasticDispersionRAS;
21 WallInteractionModel                     StandardWallInteraction;
22 HeatTransferModel                        RanzMarshall;
24 radiation                                off;
26 // Parcel basis type
27 parcelBasisType                          mass;
29 // Total mass to inject
30 massTotal  massTotal [ 1  0  0  0  0]    1e-4;
32 // Minimum particle mass
33 minParticleMass      minParticleMass     [ 1  0  0  0  0]     1.0e-15;
35 // Parcel thermo properties
36 rho0      rho0     [ 1 -3  0  0  0]      2500;
37 T0        T0       [ 0  0  0  1  0]      300;
38 cp0       cp0      [ 0  2 -2 -1  0]      900;
39 epsilon0  epsilon0 [ 0  0  0  0  0]      1;
40 f0        f0       [ 0  0  0  0  0]      0.5;
42 // Coupling between particles and carrier phase via source terms
43 coupled                                  true;
45 // Integer used to identify different parcel types
46 parcelTypeId                             1;
48 interpolationSchemes
50     rho                                  cell;
51     U                                    cellPointFace;
52     mu                                   cell;
53     T                                    cell;
54     Cp                                   cell;
57 integrationSchemes
59     U                                    Euler;
60     T                                    Analytical;
63 ManualInjectionCoeffs
65     SOI                                  0.0;
66     positionsFile                        thermoCloud1Positions;
67     U0                                   (0 0 0);
68     parcelPDF
69     {
70         pdfType                          RosinRammler;
71         RosinRammlerPDF
72         {
73             minValue                     5.0e-06;
74             maxValue                     500.0e-06;
75             d                            (50.0e-06);
76             n                            (0.5);
77         }
78     }
81 StandardWallInteractionCoeffs
83     e      e        [ 0  0  0  0  0]     1;
84     mu     mu       [ 0  0  0  0  0]     0;
87 RanzMarshallCoeffs
89     Pr    Pr       [ 0  0  0  0  0]     0.7;
92 // ************************************************************************* //