fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / pimpleFoam / t-junction / 0 / p
blobf28a8e452c34a2de12918ffabcffe4a5b95c62d3
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       volScalarField;
13     object      p;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 2 -2 0 0 0 0];
19 internalField   uniform 100000;
21 boundaryField
23     inlet
24     {
25         //type            totalPressure;
26         //p0              uniform 100040;
28         type            timeVaryingTotalPressure;
29         p0              100040; // 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 100040;
39     }
41     outlet1
42     {
43         type            fixedValue;
44         value           uniform 100010;
45     }
47     outlet2
48     {
49         type            fixedValue;
50         value           uniform 100000;
51     }
53     defaultFaces
54     {
55         type            zeroGradient;
56     }
59 // ************************************************************************* //