fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / lagrangian / icoLagrangianFoam / channelParticles / constant / kinematicCloudProperties
blob122be78e31f4ba0cc9d97b6e8e8ae078ea3a6374
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      kinematicCloud1Properties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 active yes;
19 // Particle sub-models
20 InjectionModel                           ConeInjection;
21 DragModel                                SphereDrag;
22 DispersionModel                          none;
23 PatchInteractionModel                    StandardWallInteraction;
24 PostProcessingModel                      PatchPostProcessing;
26 // Parcel basis type
27 parcelBasisType                          mass;
29 constantProperties{
30     rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
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]      5000;
39 // Coupling between particles and carrier phase via source terms
40 coupled                                  true;
42 cellValueSourceCorrection on;
44 // Integer used to identify different parcel types
45 parcelTypeId                             2;
47 interpolationSchemes
49     rho                                  cell;
50     U                                    cellPointFace;
51     mu                                   cell;
54 integrationSchemes
56     U                                    Euler;
59 particleForces
61     gravity         on;
62     virtualMass     off;
63     pressureGradient off;
66 ConeInjectionCoeffs
68     SOI                                  0.2;
69     parcelBasisType                      mass;
70     duration                             0.6;
71     position                             (0.01 0.05 0.005);
72     direction                            (1 0 0);
73     parcelsPerSecond                     10000;
74     volumeFlowRate                       constant 0.01;
75     Umag                                 constant 5.0;
76     thetaInner                           constant 0.0;
77     thetaOuter                           constant 30.0;
78     parcelPDF
79     {
80         pdfType                          RosinRammler;
81         RosinRammlerPDF
82         {
83             minValue                     50.0e-06;
84             maxValue                     100.0e-06;
85             d                            (75.0e-06);
86             n                            (0.5);
87         }
88     }
90     // Total mass to inject
91     massTotal  massTotal [ 1  0  0  0  0]    2.0e-4;
94 StandardWallInteractionCoeffs
96     type rebound;
99 PatchPostProcessingCoeffs
101     maxStoredParcels 10000;
102     patches (
103             in
104             out
105     );
108 // ************************************************************************* //