/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  11
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       volScalarField;
    object      p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 -1 -2 0 0 0 0];  
  
internalField   uniform 100000;  
  
boundaryField  
{  
INLET
    {  
        type           zeroGradient;
    }  
      
OUTLET
    {  
        type           fixedValue;
        value           uniform 100000;      // 修正压力初始化为0，因为压力出口会处理  
    }  
      
WALL
    {  
        type            fixedFluxPressure;  
    }  
}  

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