BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / lagrangian / reactingParcelFilmFoam / hotBoxes / constant / surfaceFilmProperties
blob43ae73894423617a6e158e8ba8d55f835a69dc13
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      SurfaceFilmProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 surfaceFilmModel thermoSingleLayer;
20 regionName      wallFilmRegion;
22 active          true;
25 thermoSingleLayerCoeffs
27     thermoModel singleComponent; // constant
29     liquid      H2O;
31     radiationModel  none;
33     upperSurfaceModels
34     {
36         heatTransferModel constant;
37         constantCoeffs
38         {
39            c0              1e-8;
40         }
42         heatTransferModel mappedConvectiveHeatTransfer;
43     }
45     lowerSurfaceModels
46     {
47         heatTransferModel constant;
48         constantCoeffs
49         {
50             c0              50;
51         }
52     }
54     forces
55     (
56         surfaceShear
57         thermocapillary
58         contactAngle
59     );
61     surfaceShearCoeffs
62     {
63         Cf          0.005;
64     }
66     contactAngleCoeffs
67     {
68         deltaWet        1e-4;
69         Ccf             0.085;
70         contactAngleDistribution
71         {
72             type            normal;
73             normalDistribution
74             {
75                 minValue        50;
76                 maxValue        100;
77                 expectation     75;
78                 variance        100;
79             }
80         }
81     }
83     injectionModels
84     (
85         curvatureSeparation
86         drippingInjection
87     );
89     curvatureSeparationCoeffs
90     {
91         definedPatchRadii
92         (
93             ("(cube[0-9][0-9]_side[0-9]_to_cube[0-9][0-9]_side[0-9])" 0)
94         );
95     }
97     drippingInjectionCoeffs
98     {
99         cloudName    reactingCloud1;
100         deltaStable  0;
102         particlesPerParcel 100.0;
104         parcelDistribution
105         {
106             type         RosinRammler;
107             RosinRammlerDistribution
108             {
109                 minValue        5e-04;
110                 maxValue        0.0012;
111                 d               7.5e-05;
112                 n               0.5;
113             }
114         }
115     }
117     phaseChangeModel standardPhaseChange;
119     standardPhaseChangeCoeffs
120     {
121         Tb              373;
122         deltaMin        1e-8;
123         L               1.0;
124     }
128 // ************************************************************************* //