initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / heatTransfer / buoyantBoussinesqSimpleFoam / hotRoom / constant / transportProperties
blob13b6ecdd70479eafc45d08b702c7ae2845795192
1 /*---------------------------------------------------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
14     root            "";
15     case            "";
16     instance        "";
17     local           "";
19     class           dictionary;
20     object          transportProperties;
23 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
25 transportModel Newtonian;
27 // Laminar viscosity
28 nu              nu [0 2 -1 0 0 0 0] 1e-05;
30 // Thermal expansion coefficient
31 beta            beta [0 0 0 -1 0 0 0] 3e-03;
33 // Reference temperature
34 TRef            TRef [0 0 0 1 0 0 0] 300;
36 // Laminar Prandtl number
37 Pr              Pr [0 0 0 0 0 0 0] 0.9;
39 // Turbulent Prandtl number
40 Prt             Prt [0 0 0 0 0 0 0] 0.7;
42 // ************************************************************************* //