initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / rhoTurbTwinParcelFoam / simplifiedSiwek / constant / kinematicCloud1Properties
blob6ae6ae3a914ad59663c13b8bc05ad9ec0362579c
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      kinematicCloud1Properties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Particle sub-models
18 InjectionModel                           ManualInjection;
19 DragModel                                SphereDrag;
20 DispersionModel                          StochasticDispersionRAS;
21 WallInteractionModel                     StandardWallInteraction;
23 // Parcel basis type
24 parcelBasisType                          mass;
26 // Total mass to inject
27 massTotal  massTotal [ 1  0  0  0  0]    2.0e-4;
29 // Minimum particle mass
30 minParticleMass      minParticleMass     [ 1  0  0  0  0]     1.0e-15;
32 // Parcel thermo properties
33 rho0      rho0     [ 1 -3  0  0  0]      5000;
35 // Coupling between particles and carrier phase via source terms
36 coupled                                  true;
38 // Integer used to identify different parcel types
39 parcelTypeId                             2;
41 interpolationSchemes
43     rho                                  cell;
44     U                                    cellPointFace;
45     mu                                   cell;
48 integrationSchemes
50     U                                    Euler;
53 ManualInjectionCoeffs
55     SOI                                  0.0;
56     positionsFile                        kinematicCloud1Positions;
57     U0                                   (0 0 0);
58     parcelPDF
59     {
60         pdfType                          RosinRammler;
61         RosinRammlerPDF
62         {
63             minValue                     50.0e-06;
64             maxValue                     100.0e-06;
65             d                            (75.0e-06);
66             n                            (0.5);
67         }
68     }
71 ConeInjectionCoeffs
73     SOI                                  0.001;
74     duration                             0.005;
75     position                             (0.25 0.25 0.05);
76     direction                            (0 -1 0);
77     parcelsPerSecond                     10000;
78     volumeFlowRate                       Constant;
79     volumeFlowRateCoeffs
80     {
81         value                            0.01;
82     }
83     Umag                                 Constant;
84     UmagCoeffs
85     {
86         value                            50.0;
87     }
88     thetaInner                           Constant;
89     thetaInnerCoeffs
90     {
91         value                            0.0;
92     }
93     thetaOuter                           Constant;
94     thetaOuterCoeffs
95     {
96         value                            30.0;
97     }
98     parcelPDF
99     {
100         pdfType                          RosinRammler;
101         RosinRammlerPDF
102         {
103             minValue                     50.0e-06;
104             maxValue                     100.0e-06;
105             d                            (75.0e-06);
106             n                            (0.5);
107         }
108     }
111 StandardWallInteractionCoeffs
113     e      e        [ 0  0  0  0  0]     1;
114     mu     mu       [ 0  0  0  0  0]     0;
117 // ************************************************************************* //