diff --git a/tutorials/incompressible/MRFSimpleFoam/mixerGgiMRF/save/U b/tutorials/incompressible/MRFSimpleFoam/mixerGgiMRF/save/U new file mode 100644 index 000000000..ce8d03b18 --- /dev/null +++ b/tutorials/incompressible/MRFSimpleFoam/mixerGgiMRF/save/U @@ -0,0 +1,51 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | foam-extend: Open Source CFD | +| \\ / O peration | Version: 4.0 | +| \\ / A nd | Web: http://www.foam-extend.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + location "0"; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + impellerWall + { + type fixedValue; + value uniform (0 0 0); + } + baffleWall + { + type fixedValue; + value uniform (0 0 0); + } + insideSlider + { + type ggi; + value uniform (0 0 0); + } + outsideSlider + { + type ggi; + value uniform (0 0 0); + } + defaultFaces + { + type empty; + } +} + + +// ************************************************************************* // diff --git a/tutorials/incompressible/MRFSimpleFoam/mixerGgiMRF/save/p b/tutorials/incompressible/MRFSimpleFoam/mixerGgiMRF/save/p new file mode 100644 index 000000000..6ee83768f --- /dev/null +++ b/tutorials/incompressible/MRFSimpleFoam/mixerGgiMRF/save/p @@ -0,0 +1,49 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | foam-extend: Open Source CFD | +| \\ / O peration | Version: 4.0 | +| \\ / A nd | Web: http://www.foam-extend.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + impellerWall + { + type zeroGradient; + } + baffleWall + { + type zeroGradient; + } + insideSlider + { + type ggi; + value uniform 0; + } + outsideSlider + { + type ggi; + value uniform 0; + } + defaultFaces + { + type empty; + } +} + + +// ************************************************************************* //