initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / boundaryFoam / boundaryWallFunctions / constant / transportProperties
blob37d703adcb3eb25588dddc91f17c85675a8ef021
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.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] (10 0 0);
20 // Laminar incompressible transport model
21 transportModel  Newtonian;
23 // nu
24 nu              nu [0 2 -1 0 0 0 0] 1e-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 // ************************************************************************* //