Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantBoussinesqPimpleFoam / hotRoom / constant / transportProperties
blobe59817dc43f6bf8b939e38231af0cf6ad8c93731
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.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      transportProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 transportModel Newtonian;
20 // Laminar viscosity
21 nu              nu [0 2 -1 0 0 0 0] 1e-05;
23 // Thermal expansion coefficient
24 beta            beta [0 0 0 -1 0 0 0] 3e-03;
26 // Reference temperature
27 TRef            TRef [0 0 0 1 0 0 0] 300;
29 // Laminar Prandtl number
30 Pr              Pr [0 0 0 0 0 0 0] 0.9;
32 // Turbulent Prandtl number
33 Prt             Prt [0 0 0 0 0 0 0] 0.7;
35 // ************************************************************************* //