BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / icoUncoupledKinematicParcelFoam / hopper / hopperInitialState / constant / kinematicCloudProperties
blob4b4a8ed827a4e6a3e2e57243354e17b4fc3b6cdf
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.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 solution
20     active          true;
21     coupled         false;
22     transient       yes;
23     cellValueSourceCorrection off;
25     interpolationSchemes
26     {
27         rho             cell;
28         U               cellPoint;
29         mu              cell;
30     }
32     integrationSchemes
33     {
34         U               Euler;
35     }
38 constantProperties
40     parcelTypeId    1;
42     rhoMin          1e-15;
43     minParticleMass 1e-15;
45     rho0            964;
46     youngsModulus   6e8;
47     poissonsRatio   0.35;
49     constantVolume  false;
52 subModels
54     particleForces
55     {
56         sphereDrag;
57         gravity;
58     }
60     injectionModel manualInjection;
62     dispersionModel none;
64     patchInteractionModel standardWallInteraction;
66     heatTransferModel none;
68     surfaceFilmModel none;
70     collisionModel pairCollision;
72     radiation off;
74     manualInjectionCoeffs
75     {
76         massTotal       0;
77         parcelBasisType fixed;
78         nParticle       1;
79         SOI             0;
80         positionsFile   "kinematicCloudPositions";
81         U0              ( 0 0 0 );
82         sizeDistribution
83         {
84             type        fixedValue;
85             fixedValueDistribution
86             {
87                 value   0.006;
88             }
89         }
90     }
92     pairCollisionCoeffs
93     {
94         // Maximum possible particle diameter expected at any time
95         maxInteractionDistance  0.006;
97         writeReferredParticleCloud no;
99         pairModel pairSpringSliderDashpot;
101         pairSpringSliderDashpotCoeffs
102         {
103             useEquivalentSize   no;
104             alpha               0.12;
105             b                   1.5;
106             mu                  0.52;
107             cohesionEnergyDensity 0;
108             collisionResolutionSteps 12;
109         };
111         wallModel    wallLocalSpringSliderDashpot;
113         wallLocalSpringSliderDashpotCoeffs
114         {
115             useEquivalentSize no;
116             collisionResolutionSteps 12;
117             walls
118             {
119                 youngsModulus   1e10;
120                 poissonsRatio   0.23;
121                 alpha           0.12;
122                 b               1.5;
123                 mu              0.43;
124                 cohesionEnergyDensity 0;
125             }
126             frontAndBack
127             {
128                 youngsModulus   1e10;
129                 poissonsRatio   0.23;
130                 alpha           0.12;
131                 b               1.5;
132                 mu              0.1;
133                 cohesionEnergyDensity 0;
134             }
135         };
136     }
138     standardWallInteractionCoeffs
139     {
140         type            rebound;
141     }
145 cloudFunctions
149 // ************************************************************************* //