diff --git a/tutorials/mesh/parallel/filter/0.orig/U b/tutorials/mesh/parallel/filter/0.orig/U index 88b33643b4cacdec33919a9a1c07cad8cd96c591..3e05c93586cc51a32d73a3562874d0edf64a5740 100644 --- a/tutorials/mesh/parallel/filter/0.orig/U +++ b/tutorials/mesh/parallel/filter/0.orig/U @@ -15,21 +15,20 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; -internalField uniform ( 0 0 0 ); +internalField uniform (0 0 0); boundaryField { walls { - type fixedValue; - value uniform ( 0 0 0 ); + type noSlip; } inlet { type fixedValue; - value uniform ( 5 0 0 ); + value uniform (5 0 0); } outlet { diff --git a/tutorials/mesh/parallel/filter/0.orig/p_rgh b/tutorials/mesh/parallel/filter/0.orig/p_rgh new file mode 100644 index 0000000000000000000000000000000000000000..889e4cf111374c8bbb5eae7cdd4e47156ac8ddcd --- /dev/null +++ b/tutorials/mesh/parallel/filter/0.orig/p_rgh @@ -0,0 +1,66 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: dev | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object p_rgh; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [1 -1 -2 0 0 0 0]; + +internalField uniform 100000; + +boundaryField +{ + walls + { + type fixedFluxPressure; + } + + inlet + { + type fixedFluxPressure; + } + + outlet + { + type prghPressure; + p uniform 100000; + } + + cycLeft_half0 + { + type cyclic; + } + + cycRight_half0 + { + type cyclic; + } + + frontAndBack + { + type empty; + } + + cycLeft_half1 + { + type cyclic; + } + + cycRight_half1 + { + type cyclic; + } +} + + +// ************************************************************************* //