Skip to content
Snippets Groups Projects
p 1.35 KiB
Newer Older
Sebastian Weiss's avatar
Sebastian Weiss committed
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2012                                  |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 -1 -2 0 0 0 0];


internalField   uniform 200e+05;

boundaryField
{
    inlet
    {
        type            totalPressure;
        p0              uniform 200e+05;
        value           uniform 200e+05;
    }
    outlet
    {
	type		fixedMean; 
	meanValue	100e+05;
	value		uniform 100e+05;
    }
    top
    {
        type            zeroGradient;
    }
    axis
    {
        type            empty;
    }
    front
    {
        type            wedge;
    }
    back
    {
        type            wedge;
    }
}


// ************************************************************************* //