Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / incompressible / boundaryFoam / boundaryTwoWallsFlowSolution / constant / transportProperties
blob7c54b5a7f71bb130d0a509c66c31a5059512ca2b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      transportProperties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Ubar
18 Ubar            Ubar [0 1 -1 0 0 0 0] (5 0 0);
20 // Laminar incompressible transport model
21 transportModel  Newtonian;
23 // nu
24 nu              nu [0 2 -1 0 0 0 0] 1.8e-05;
26 // Coefficients for Cross's Power Law
27 CrossPowerLawCoeffs
29     // nu0
30     nu0             nu0 [0 2 -1 0 0 0 0] 1e-06;
31     // nuInf
32     nuInf           nuInf [0 2 -1 0 0 0 0] 1e-06;
33     // m
34     m               m [0 0 1 0 0 0 0] 1;
35     // n
36     n               n [0 0 0 0 0 0 0] 1;
39 // Coefficients for Bird-Carreau Law
40 BirdCarreauCoeffs
42     // nu0
43     nu0             nu0 [0 2 -1 0 0 0 0] 1e-06;
44     // nuInf
45     nuInf           nuInf [0 2 -1 0 0 0 0] 1e-06;
46     // k
47     k               k [0 0 1 0 0 0 0] 0;
48     // n
49     n               n [0 0 0 0 0 0 0] 1;
52 // ************************************************************************* //