ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleFoam / TJunction / 0 / p
blob8eee9b7b3b54fdc69320369b774944e0041b1b6d
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.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      p;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 2 -2 0 0 0 0];
19 internalField   uniform 0;
21 boundaryField
23     inlet      
24     {
25         //type            totalPressure;
26         //p0              uniform 40;
28         type            timeVaryingTotalPressure;
29         p0              40; // only used for restarts
30         outOfBounds     clamp;
31         fileName        "$FOAM_CASE/constant/p0vsTime";
33         U               U;
34         phi             phi;
35         rho             none;
36         psi             none;
37         gamma           1;
38         value           uniform 40;
39     }
41     outlet1     
42     {
43         type            fixedValue;
44         value           uniform 10;
45     }
47     outlet2    
48     {
49         type            fixedValue;
50         value           uniform 0;
51     }
53     defaultFaces
54     {
55         type            zeroGradient;
56     }
59 // ************************************************************************* //