Skip to content
Snippets Groups Projects
Commit 336d9ab3 authored by Sebastian Weiss's avatar Sebastian Weiss
Browse files

Upload New File

parent c9ecf3bd
No related branches found
No related tags found
No related merge requests found
/*--------------------------------*- 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;
}
}
// ************************************************************************* //
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment