ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / tutorials / multiphase / multiphaseInterFoam / laminar / damBreak4phase / constant / transportProperties
blob34f7a766bdd521820013780dc18ba5fe20c4cd78
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.7.1                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      transportProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 phases
20      water
21      {
22          transportModel Newtonian;
23          nu nu [ 0 2 -1 0 0 0 0 ] 1e-06;
24          rho rho [ 1 -3 0 0 0 0 0 ] 1000;
25      }
27      oil
28      {
29          transportModel Newtonian;
30          nu nu [ 0 2 -1 0 0 0 0 ] 1e-06;
31          rho rho [ 1 -3 0 0 0 0 0 ] 500;
32      }
34      mercury
35      {
36          transportModel Newtonian;
37          nu nu [ 0 2 -1 0 0 0 0 ] 1.125e-07;
38          rho rho [ 1 -3 0 0 0 0 0 ] 13529;
39      }
41      air
42      {
43          transportModel Newtonian;
44          nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05;
45          rho rho [ 1 -3 0 0 0 0 0 ] 1;
46      }
49 refPhase        air;
51 sigmas
53     (air water) 0.07
54     (air oil) 0.07
55     (air mercury) 0.07
56     (water oil) 0.07
57     (water mercury) 0.07
58     (oil mercury) 0.07
62 // ************************************************************************* //