BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / multiphase / interMixingFoam / laminar / damBreak / constant / transportProperties
blob8b9a5dcc1cb2ed774f2a98d576ba48b72aabaa32
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      transportProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 // Air
19 phase1
21     transportModel  Newtonian;
22     nu              nu [0 2 -1 0 0 0 0] 1.48e-05;
23     rho             rho [1 -3 0 0 0 0 0] 1;
26 // Other Liquid
27 phase2
29     transportModel  Newtonian;
30     nu              nu [0 2 -1 0 0 0 0]  1e-6;
31     rho             rho [1 -3 0 0 0 0 0] 1010;
34 // Water
35 phase3
37     transportModel  Newtonian;
38     nu              nu [0 2 -1 0 0 0 0]  1e-6;
39     rho             rho [1 -3 0 0 0 0 0] 1000;
42 // Surface tension coefficients
43 sigma12           sigma12 [1 0 -2 0 0 0 0] 0.05;
44 sigma13           sigma13 [1 0 -2 0 0 0 0] 0.04;
46 // Diffusivity between miscible phases
47 D23               D23   [0 2 -1 0 0 0 0]  3e-09;
49 // ************************************************************************* //