From 336d9ab365ac52ba6f70893ba16fb341f9de8d07 Mon Sep 17 00:00:00 2001 From: Sebastian Weiss <sebastian.weiss@ptb.de> Date: Fri, 28 Oct 2022 06:29:07 +0000 Subject: [PATCH] Upload New File --- tutorial/0/p | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 tutorial/0/p diff --git a/tutorial/0/p b/tutorial/0/p new file mode 100644 index 0000000..a1dabbd --- /dev/null +++ b/tutorial/0/p @@ -0,0 +1,56 @@ +/*--------------------------------*- 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; + } +} + + +// ************************************************************************* // -- GitLab