BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / heatTransfer / buoyantSimpleFoam / circuitBoardCooling / 0.org / p_rgh
blobc71e9d03d99c019ed10d7cafb8d7b6c2377f40ee
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     location    "0";
14     object      p_rgh;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [ 1 -1 -2 0 0 0 0 ];
20 internalField   uniform 101325;
22 boundaryField
24     floor
25     {
26         type            buoyantPressure;
27         value           $internalField;
28     }
29     ceiling
30     {
31         type            buoyantPressure;
32         value           $internalField;
33     }
34     inlet
35     {
36         type            buoyantPressure;
37         value           $internalField;
38     }
39     outlet
40     {
41         type            buoyantPressure;
42         value           $internalField;
43     }
44     fixedWalls
45     {
46         type            empty;
47     }
48     "baffle1Wall.*"
49     {
50         type           calculated;
51     }
55 // ************************************************************************* //