fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / heatTransfer / buoyantBoussinesqSimpleFoam / iglooWithFridges / constant / transportProperties
blob6e1da3625e7c29701291047c156d08b386769e17
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      transportProperties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 transportModel Newtonian;
19 // Laminar viscosity
20 nu              nu [0 2 -1 0 0 0 0] 1e-05;
22 // Thermal expansion coefficient
23 beta            beta [0 0 0 -1 0 0 0] 3e-03;
25 // Reference temperature
26 TRef            TRef [0 0 0 1 0 0 0] 300;
28 // Laminar Prandtl number
29 Pr              Pr [0 0 0 0 0 0 0] 0.7;
31 // Turbulent Prandtl number
32 Prt             Prt [0 0 0 0 0 0 0] 0.9;
34 // ************************************************************************* //