diff --git a/applications/test/dataEntry/Make/options b/applications/test/dataEntry/Make/options index 405e346e80..a071d9557c 100644 --- a/applications/test/dataEntry/Make/options +++ b/applications/test/dataEntry/Make/options @@ -9,4 +9,5 @@ EXE_LIBS = \ -llagrangianIntermediate \ -lradiationModels \ -lthermophysicalFunctions \ - -lregionModels + -lregionModels \ + -lsampling diff --git a/applications/test/maxMem/Make/options b/applications/test/maxMem/Make/options index 1570a9377e..c1239ff7aa 100644 --- a/applications/test/maxMem/Make/options +++ b/applications/test/maxMem/Make/options @@ -1 +1 @@ -EXE_LIBS = $(FOAM_EXT_LIBBIN)/libfbsdmalloc.o +EXE_LIBS = /* $(FOAM_EXT_LIBBIN)/libfbsdmalloc.o */ diff --git a/bin/foamRunTutorials b/bin/foamRunTutorials index 2893be0a2c..d98b87ccb1 100755 --- a/bin/foamRunTutorials +++ b/bin/foamRunTutorials @@ -38,29 +38,29 @@ # normally use "make" make="make" -# set WM_NCOMPPROCS automatically when both WM_HOSTS and WM_SCHEDULER are set -if [ -z "$WM_NCOMPPROCS" -a -n "$WM_HOSTS" -a -n "$WM_SCHEDULER" ] -then - WM_NCOMPPROCS=$(wmakeScheduler -count) - [ $? -eq 0 ] || unset WM_NCOMPPROCS -fi - -if [ "$WM_NCOMPPROCS" ] -then - if [ "$WM_NCOMPPROCS" -gt 1 -a ! "$MAKEFLAGS" ] - then - lockDir=$HOME/.$WM_PROJECT/.wmake - - if [ -d $lockDir ] - then - rm -f $lockDir/* - else - mkdir -p $lockDir - fi - - make="make --no-print-directory -j "$WM_NCOMPPROCS - fi -fi +## set WM_NCOMPPROCS automatically when both WM_HOSTS and WM_SCHEDULER are set +#if [ -z "$WM_NCOMPPROCS" -a -n "$WM_HOSTS" -a -n "$WM_SCHEDULER" ] +#then +# WM_NCOMPPROCS=$(wmakeScheduler -count) +# [ $? -eq 0 ] || unset WM_NCOMPPROCS +#fi +# +#if [ "$WM_NCOMPPROCS" ] +#then +# if [ "$WM_NCOMPPROCS" -gt 1 -a ! "$MAKEFLAGS" ] +# then +# lockDir=$HOME/.$WM_PROJECT/.wmake +# +# if [ -d $lockDir ] +# then +# rm -f $lockDir/* +# else +# mkdir -p $lockDir +# fi +# +# make="make --no-print-directory -j "$WM_NCOMPPROCS +# fi +#fi @@ -103,7 +103,8 @@ else # fi #done FOAM_TARGETS=$(for d in *; do [ -d "$d" ] && echo "$d"; done | xargs) - $make -k -f $WM_PROJECT_DIR/bin/tools/MakefileDirs FOAM_TARGETS="$FOAM_TARGETS" FOAM_APP="$WM_SCHEDULER $thisScript" + #$make -k -f $WM_PROJECT_DIR/bin/tools/MakefileDirs FOAM_TARGETS="$FOAM_TARGETS" FOAM_APP="$WM_SCHEDULER $thisScript" + $make -k -f $WM_PROJECT_DIR/bin/tools/MakefileDirs FOAM_TARGETS="$FOAM_TARGETS" FOAM_APP="$thisScript" fi #------------------------------------------------------------------------------ diff --git a/src/OpenFOAM/meshes/primitiveShapes/objectHit/pointHitSort.H b/src/OpenFOAM/meshes/primitiveShapes/objectHit/pointHitSort.H index bd85bb8677..d64471294d 100644 --- a/src/OpenFOAM/meshes/primitiveShapes/objectHit/pointHitSort.H +++ b/src/OpenFOAM/meshes/primitiveShapes/objectHit/pointHitSort.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -65,7 +65,7 @@ public: //- Construct null pointHitSort() : - inter_(false, vector::zero, GREAT), + inter_(false, vector::zero, GREAT, false), index_(-1) {} @@ -96,9 +96,9 @@ public: return inter_.distance() == rhs.inter().distance(); } - bool operator>(const pointHitSort& rhs) const + bool operator<(const pointHitSort& rhs) const { - return inter_.distance() > rhs.inter().distance(); + return inter_.distance() < rhs.inter().distance(); } }; diff --git a/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/mixtures/multiComponentSolidMixture/multiComponentSolidMixture.C b/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/mixtures/multiComponentSolidMixture/multiComponentSolidMixture.C index f43f4866b9..b9cfca7a1a 100644 --- a/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/mixtures/multiComponentSolidMixture/multiComponentSolidMixture.C +++ b/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/mixtures/multiComponentSolidMixture/multiComponentSolidMixture.C @@ -30,7 +30,7 @@ License template void Foam::multiComponentSolidMixture::correctMassFractions() { - volScalarField Yt = Y_[0]; + volScalarField Yt("Yt", Y_[0]); for (label n=1; n::constructSpeciesData template void Foam::multiComponentMixture::correctMassFractions() { - volScalarField Yt = Y_[0]; + volScalarField Yt("Yt", Y_[0]); for (label n=1; n/dev/null; exit 0' \ + trap 'mv ${MAIN_CONTROL_DICT}.$$ ${MAIN_CONTROL_DICT} 2>/dev/null; exit 0' \ EXIT TERM INT - cp ${MAIN_CONTROL_DICT} ${MAIN_CONTROL_DICT}.org + cp ${MAIN_CONTROL_DICT} ${MAIN_CONTROL_DICT}.$$ echo "Enabling allowSystemOperations in ${MAIN_CONTROL_DICT}." sed \ -e s/"\(allowSystemOperations[ \t]*\)\([0-9]\);"/"\1 1;"/g \ - ${MAIN_CONTROL_DICT}.org > ${MAIN_CONTROL_DICT} + ${MAIN_CONTROL_DICT}.$$ > ${MAIN_CONTROL_DICT} fi cp -r 0.org 0 > /dev/null 2>&1 diff --git a/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allclean b/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allclean index 07dc128240..151b63f7ce 100755 --- a/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allclean +++ b/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allclean @@ -6,5 +6,6 @@ cd ${0%/*} || exit 1 # run from this directory cleanCase -rm -r constant/panelRegion/polyMesh +rm -rf constant/panelRegion/polyMesh + # ----------------------------------------------------------------- end-of-file diff --git a/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allrun b/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allrun index 17b4dd27af..ae53653faa 100755 --- a/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allrun +++ b/tutorials/combustion/fireFoam/les/oppositeBurningPanels/Allrun @@ -1,4 +1,5 @@ #!/bin/sh +cd ${0%/*} || exit 1 # run from this directory # Source tutorial run functions . $WM_PROJECT_DIR/bin/tools/RunFunctions @@ -30,3 +31,5 @@ decomposePar -force > log.decomposePar.log 2>&1 decomposePar -region panelRegion > log.decomposParPanelRegion.log 2>&1 runParallel `getApplication` 6 + +# ----------------------------------------------------------------- end-of-file diff --git a/tutorials/compressible/rhoCentralFoam/Allclean b/tutorials/compressible/rhoCentralFoam/Allclean index b26e6cfb8c..f630eb247a 100755 --- a/tutorials/compressible/rhoCentralFoam/Allclean +++ b/tutorials/compressible/rhoCentralFoam/Allclean @@ -29,7 +29,6 @@ do if [ "$caseName" = "biconic25-55Run35" ] then rm -rf constant/polyMesh/boundary - wclean datToFoam fi ) done diff --git a/tutorials/compressible/rhoCentralFoam/Allrun b/tutorials/compressible/rhoCentralFoam/Allrun index e1e13d8a08..322de821c0 100755 --- a/tutorials/compressible/rhoCentralFoam/Allrun +++ b/tutorials/compressible/rhoCentralFoam/Allrun @@ -37,7 +37,6 @@ do ;; biconic25-55Run35) - wmake datToFoam runApplication datToFoam grid256.dat CONST="constant" diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/controlDict b/tutorials/incompressible/simpleFoam/motorBike/system/controlDict index 9051351468..9891d1c6c3 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/controlDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/controlDict @@ -20,7 +20,7 @@ startFrom latestTime; startTime 0; -stopAt endTime; +stopAt nextWrite; endTime 500; @@ -28,7 +28,7 @@ deltaT 1; writeControl timeStep; -writeInterval 100; +writeInterval 1; purgeWrite 0; @@ -47,6 +47,7 @@ runTimeModifiable true; libs ( "libOpenFOAM.so" + "libcompressibleTurbulenceModels.so" "libincompressibleRASModels.so" ); diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/H2O b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/H2O deleted file mode 100644 index 75162d6d15..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/H2O +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object H2O; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.0; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/N2 b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/N2 deleted file mode 100644 index 925b54726b..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/N2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object N2; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.79; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/O2 b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/O2 deleted file mode 100644 index d6aa513625..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/O2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object O2; -} - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.21; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/T b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/T deleted file mode 100644 index 12d2b5921f..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/T +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - location "0"; - class volScalarField; - object T; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - "(sides|frontAndBack)" - { - type fixedValue; - value uniform 300; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform 300; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/U b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/U deleted file mode 100644 index 44b1a1df75..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/U +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ 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 -{ - "(sides|frontAndBack)" - { - type pressureInletOutletVelocity; - value uniform (0 0 0); - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p deleted file mode 100644 index 4d638f84f7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: 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 100000; - -boundaryField -{ - "(sides|frontAndBack)" - { - type calculated; - value $internalField; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type calculated; - value $internalField; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p_rgh b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p_rgh deleted file mode 100644 index 91ded9e99d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p_rgh +++ /dev/null @@ -1,34 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object p_rgh; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -2 0 0 0 0]; - -internalField uniform 100000; - -boundaryField -{ - "(sides|frontAndBack)" - { - type buoyantPressure; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type buoyantPressure; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Tf deleted file mode 100644 index 80509500ac..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Tf +++ /dev/null @@ -1,41 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object Tf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - filmWalls - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Uf deleted file mode 100644 index c43721d74c..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Uf +++ /dev/null @@ -1,43 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volVectorField; - location "0/wallFilmRegion"; - object Uf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 -1 0 0 0 0]; - -internalField uniform (0 0 0); - -boundaryField -{ - wallFilmFaces_top - { - type slip; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } - - filmWalls - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/deltaf deleted file mode 100644 index f703f2aca1..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/deltaf +++ /dev/null @@ -1,41 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object deltaf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 0 0 0 0 0]; - -internalField uniform 0; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - filmWalls - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/H2O b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/H2O deleted file mode 100644 index 75162d6d15..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/H2O +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object H2O; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.0; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/N2 b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/N2 deleted file mode 100644 index 925b54726b..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/N2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object N2; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.79; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/O2 b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/O2 deleted file mode 100644 index d6aa513625..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/O2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object O2; -} - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.21; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/T b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/T deleted file mode 100644 index 12d2b5921f..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/T +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - location "0"; - class volScalarField; - object T; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - "(sides|frontAndBack)" - { - type fixedValue; - value uniform 300; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform 300; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/U b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/U deleted file mode 100644 index 44b1a1df75..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/U +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ 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 -{ - "(sides|frontAndBack)" - { - type pressureInletOutletVelocity; - value uniform (0 0 0); - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p deleted file mode 100644 index 4d638f84f7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: 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 100000; - -boundaryField -{ - "(sides|frontAndBack)" - { - type calculated; - value $internalField; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type calculated; - value $internalField; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p_rgh b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p_rgh deleted file mode 100644 index 91ded9e99d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p_rgh +++ /dev/null @@ -1,34 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object p_rgh; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -2 0 0 0 0]; - -internalField uniform 100000; - -boundaryField -{ - "(sides|frontAndBack)" - { - type buoyantPressure; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type buoyantPressure; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Tf deleted file mode 100644 index 80509500ac..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Tf +++ /dev/null @@ -1,41 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object Tf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - filmWalls - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Uf deleted file mode 100644 index c43721d74c..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Uf +++ /dev/null @@ -1,43 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volVectorField; - location "0/wallFilmRegion"; - object Uf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 -1 0 0 0 0]; - -internalField uniform (0 0 0); - -boundaryField -{ - wallFilmFaces_top - { - type slip; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } - - filmWalls - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/deltaf deleted file mode 100644 index f703f2aca1..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/deltaf +++ /dev/null @@ -1,41 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object deltaf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 0 0 0 0 0]; - -internalField uniform 0; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - filmWalls - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/H2O b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/H2O deleted file mode 100644 index 75162d6d15..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/H2O +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object H2O; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.0; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/N2 b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/N2 deleted file mode 100644 index 925b54726b..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/N2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object N2; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.79; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/O2 b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/O2 deleted file mode 100644 index d6aa513625..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/O2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object O2; -} - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.21; - -boundaryField -{ - "(sides|frontAndBack)" - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/T b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/T deleted file mode 100644 index 12d2b5921f..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/T +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - location "0"; - class volScalarField; - object T; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - "(sides|frontAndBack)" - { - type fixedValue; - value uniform 300; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform 300; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/U b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/U deleted file mode 100644 index 44b1a1df75..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/U +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ 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 -{ - "(sides|frontAndBack)" - { - type pressureInletOutletVelocity; - value uniform (0 0 0); - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p deleted file mode 100644 index 4d638f84f7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: 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 100000; - -boundaryField -{ - "(sides|frontAndBack)" - { - type calculated; - value $internalField; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type calculated; - value $internalField; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p_rgh b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p_rgh deleted file mode 100644 index 91ded9e99d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p_rgh +++ /dev/null @@ -1,34 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object p_rgh; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -2 0 0 0 0]; - -internalField uniform 100000; - -boundaryField -{ - "(sides|frontAndBack)" - { - type buoyantPressure; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type buoyantPressure; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Tf deleted file mode 100644 index ed08a64a3a..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Tf +++ /dev/null @@ -1,46 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object Tf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - sides - { - type zeroGradient; - } - - frontAndBack - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Uf deleted file mode 100644 index 551b5a2b47..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Uf +++ /dev/null @@ -1,48 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volVectorField; - location "0/wallFilmRegion"; - object Uf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 -1 0 0 0 0]; - -internalField uniform (0 0 0); - -boundaryField -{ - wallFilmFaces_top - { - type slip; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } - - sides - { - type fixedValue; - value uniform (0 0 0); - } - - frontAndBack - { - type slip; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/deltaf deleted file mode 100644 index f0969180ed..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/deltaf +++ /dev/null @@ -1,46 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object deltaf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 0 0 0 0 0]; - -internalField uniform 0; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - sides - { - type zeroGradient; - } - - frontAndBack - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allclean b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allclean index 50d71cadc3..4b9a47bd2e 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allclean +++ b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allclean @@ -1,4 +1,6 @@ #!/bin/sh +cd ${0%/*} || exit 1 # run from this directory + # Source tutorial clean functions . $WM_PROJECT_DIR/bin/tools/CleanFunctions @@ -6,8 +8,6 @@ cleanCase rm -rf constant/wallFilmRegion rm -rf 0 -cp -rf 0.org 0 - rm -f *.obj -#rm -rf VTK +# ----------------------------------------------------------------- end-of-file diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allrun.pre b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allrun.pre index 6904214c8d..747433b184 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allrun.pre +++ b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/Allrun.pre @@ -1,6 +1,7 @@ #!/bin/sh . $WM_PROJECT_DIR/bin/tools/RunFunctions +cp -rf 0.org 0 runApplication blockMesh runApplication setSet -batch wallFilmRegion.setSet diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/constant/polyMesh/boundary b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/constant/polyMesh/boundary index 157429aa28..30465cc75f 100644 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/constant/polyMesh/boundary +++ b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/constant/polyMesh/boundary @@ -17,23 +17,1132 @@ FoamFile 3 ( - filmWalls - { - type wall; - nFaces 1100; - startFace 62790; - } sides { type patch; nFaces 1320; - startFace 63890; + startFace 62790; } frontAndBack { type wall; nFaces 4000; - startFace 65210; + startFace 64110; + } + region0_to_wallFilmRegion_wallFilmFaces + { + type directMappedWall; + nFaces 1100; + startFace 68110; + sampleMode nearestPatchFace; + sampleRegion wallFilmRegion; + samplePatch region0_to_wallFilmRegion_wallFilmFaces; + offsetMode nonuniform; + offsets +1100 +( +(-1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 -2.775557562e-17) +(-1.110223025e-16 0 2.775557562e-17) +(0 0 0) +(-1.110223025e-16 0 0) +(-2.220446049e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 0) +(-1.110223025e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(1.110223025e-16 0 0) +(1.110223025e-16 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(0 0 -2.775557562e-17) +(1.110223025e-16 0 -1.387778781e-17) +(1.110223025e-16 0 0) +(1.110223025e-16 0 0) +(0 0 2.775557562e-17) +(0 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(0 0 -1.110223025e-16) +(-1.110223025e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 -2.775557562e-17) +(-2.220446049e-16 0 2.775557562e-17) +(-1.110223025e-16 0 0) +(-1.110223025e-16 0 0) +(0 0 -5.551115123e-17) +(1.110223025e-16 0 0) +(-1.110223025e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 -2.775557562e-17) +(0 0 -1.387778781e-17) +(1.110223025e-16 0 0) +(0 0 0) +(1.110223025e-16 0 2.775557562e-17) +(1.110223025e-16 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 -1.110223025e-16) +(-1.110223025e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(-3.330669074e-16 0 5.551115123e-17) +(-2.220446049e-16 0 -2.775557562e-17) +(-1.110223025e-16 0 2.775557562e-17) +(-2.220446049e-16 0 0) +(-1.110223025e-16 0 0) +(-3.330669074e-16 0 -5.551115123e-17) +(2.220446049e-16 0 0) +(-1.110223025e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(-1.110223025e-16 0 2.775557562e-17) +(0 0 0) +(-1.110223025e-16 0 -1.387778781e-17) +(0 0 -5.551115123e-17) +(2.220446049e-16 0 0) +(0 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(-1.110223025e-16 0 0) +(0 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(1.110223025e-16 0 -2.775557562e-17) +(-1.110223025e-16 0 -1.387778781e-17) +(0 0 0) +(0 0 0) +(0 0 2.775557562e-17) +(3.330669074e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(-1.110223025e-16 0 -1.110223025e-16) +(-1.110223025e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(-3.330669074e-16 0 5.551115123e-17) +(-3.330669074e-16 0 -2.775557562e-17) +(-3.330669074e-16 0 2.775557562e-17) +(-1.110223025e-16 0 0) +(-1.110223025e-16 0 0) +(-3.330669074e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 0) +(-1.110223025e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 0 -5.551115123e-17) +(0 0 -2.775557562e-17) +(0 0 -1.387778781e-17) +(1.110223025e-16 0 0) +(0 0 0) +(0 0 2.775557562e-17) +(0 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 -2.775557562e-17) +(-2.220446049e-16 0 2.775557562e-17) +(0 0 0) +(-1.110223025e-16 0 0) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 0) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(-4.440892099e-16 0 5.551115123e-17) +(-4.440892099e-16 0 0) +(-2.220446049e-16 0 5.551115123e-17) +(-4.440892099e-16 0 1.110223025e-16) +(-2.220446049e-16 0 4.163336342e-17) +(0 0 0) +(0 0 0) +(-2.220446049e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(-2.220446049e-16 0 0) +(-6.661338148e-16 0 5.551115123e-17) +(-4.440892099e-16 0 5.551115123e-17) +(0 0 1.387778781e-17) +(0 0 0) +(0 0 0) +(-6.661338148e-16 0 -8.326672685e-17) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 1.110223025e-16) +(-4.440892099e-16 0 1.665334537e-16) +(-4.440892099e-16 0 5.551115123e-17) +(0 0 0) +(0 0 2.775557562e-17) +(2.220446049e-16 0 -1.387778781e-17) +(2.220446049e-16 0 0) +(0 0 1.387778781e-17) +(0 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(-4.440892099e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 0) +(-2.220446049e-16 0 5.551115123e-17) +(-4.440892099e-16 0 1.110223025e-16) +(-4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(-2.220446049e-16 0 1.387778781e-17) +(-2.220446049e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(2.220446049e-16 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(-2.220446049e-16 0 1.387778781e-17) +(0 0 0) +(-2.220446049e-16 0 0) +(-4.440892099e-16 0 -8.326672685e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 1.110223025e-16) +(-4.440892099e-16 0 5.551115123e-17) +(-2.220446049e-16 0 0) +(-2.220446049e-16 0 5.551115123e-17) +(-4.440892099e-16 0 1.110223025e-16) +(-6.661338148e-16 0 4.163336342e-17) +(0 0 0) +(0 0 0) +(-2.220446049e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(0 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(0 0 1.387778781e-17) +(0 0 0) +(-4.440892099e-16 0 0) +(-4.440892099e-16 0 -8.326672685e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 1.110223025e-16) +(-2.220446049e-16 0 1.665334537e-16) +(-6.661338148e-16 0 5.551115123e-17) +(0 0 0) +(0 0 2.775557562e-17) +(-2.220446049e-16 0 -1.387778781e-17) +(-2.220446049e-16 0 0) +(0 0 1.387778781e-17) +(0 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(-6.661338148e-16 0 1.110223025e-16) +(-4.440892099e-16 0 4.163336342e-17) +(-2.220446049e-16 0 0) +(0 0 1.387778781e-17) +(-4.440892099e-16 0 -2.775557562e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(4.440892099e-16 0 -1.110223025e-16) +(0 0 0) +(-6.661338148e-16 0 5.551115123e-17) +(-4.440892099e-16 0 5.551115123e-17) +(0 0 1.387778781e-17) +(0 0 0) +(-4.440892099e-16 0 0) +(-6.661338148e-16 0 -8.326672685e-17) +(0 0 5.551115123e-17) +(4.440892099e-16 0 5.551115123e-17) +(0 0 1.110223025e-16) +(0 0 5.551115123e-17) +(0 0 0) +(-2.220446049e-16 0 5.551115123e-17) +(-6.661338148e-16 0 1.110223025e-16) +(-4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(-4.440892099e-16 0 0) +(-2.220446049e-16 0 -2.775557562e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(2.220446049e-16 0 -1.110223025e-16) +(2.220446049e-16 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(-2.220446049e-16 0 1.387778781e-17) +(-2.220446049e-16 0 0) +(0 0 0) +(-4.440892099e-16 0 -8.326672685e-17) +(4.440892099e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 0 1.110223025e-16) +(-2.220446049e-16 0 1.665334537e-16) +(-2.220446049e-16 0 5.551115123e-17) +(0 0 0) +(0 0 2.775557562e-17) +(2.220446049e-16 0 -1.387778781e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 1.387778781e-17) +(0 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(-8.881784197e-16 0 1.110223025e-16) +(-4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(0 0 1.387778781e-17) +(-4.440892099e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(0 0 0) +(-6.661338148e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(0 0 1.387778781e-17) +(0 0 0) +(-2.220446049e-16 0 0) +(-6.661338148e-16 0 -8.326672685e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 1.110223025e-16) +(-4.440892099e-16 0 5.551115123e-17) +(-4.440892099e-16 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(-8.881784197e-16 0 1.110223025e-16) +(-6.661338148e-16 0 4.163336342e-17) +(-4.440892099e-16 0 0) +(-4.440892099e-16 0 0) +(-4.440892099e-16 0 -2.775557562e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(-4.440892099e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(0 0 0) +(-8.881784197e-16 0 5.551115123e-17) +(-4.440892099e-16 0 5.551115123e-17) +(-2.220446049e-16 0 1.387778781e-17) +(0 0 0) +(-6.661338148e-16 0 0) +(-8.881784197e-16 0 -8.326672685e-17) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(4.440892099e-16 0 1.110223025e-16) +(-8.881784197e-16 0 1.665334537e-16) +(-8.881784197e-16 0 5.551115123e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 2.775557562e-17) +(2.220446049e-16 0 -1.387778781e-17) +(-2.220446049e-16 0 0) +(2.220446049e-16 0 1.387778781e-17) +(2.220446049e-16 0 -2.775557562e-17) +(2.220446049e-16 0 -5.551115123e-17) +(-8.881784197e-16 0 -5.551115123e-17) +(-8.881784197e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(-6.661338148e-16 0 1.110223025e-16) +(-4.440892099e-16 0 4.163336342e-17) +(-2.220446049e-16 0 0) +(0 0 1.387778781e-17) +(-4.440892099e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(0 0 0) +(-4.440892099e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 1.387778781e-17) +(0 0 0) +(-6.661338148e-16 0 0) +(-4.440892099e-16 0 -8.326672685e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 1.110223025e-16) +(2.220446049e-16 0 -5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 2.775557562e-17) +(0 0 0) +(3.330669074e-16 0 -1.387778781e-17) +(2.220446049e-16 0 -5.551115123e-17) +(0 0 0) +(2.220446049e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 -2.775557562e-17) +(2.220446049e-16 0 -1.387778781e-17) +(1.110223025e-16 0 0) +(2.220446049e-16 0 0) +(0 0 2.775557562e-17) +(-1.110223025e-16 0 -5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(3.330669074e-16 0 -1.110223025e-16) +(1.110223025e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(3.330669074e-16 0 5.551115123e-17) +(3.330669074e-16 0 -2.775557562e-17) +(1.110223025e-16 0 2.775557562e-17) +(1.110223025e-16 0 0) +(2.220446049e-16 0 0) +(3.330669074e-16 0 -5.551115123e-17) +(1.110223025e-16 0 0) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(0 0 -5.551115123e-17) +(0 0 -2.775557562e-17) +(0 0 -1.387778781e-17) +(2.220446049e-16 0 0) +(0 0 0) +(0 0 2.775557562e-17) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 -2.775557562e-17) +(1.110223025e-16 0 2.775557562e-17) +(0 0 0) +(0 0 0) +(2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 0) +(1.110223025e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(3.330669074e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(1.110223025e-16 0 2.775557562e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 -1.387778781e-17) +(3.330669074e-16 0 -5.551115123e-17) +(1.110223025e-16 0 0) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(0 0 0) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 -2.775557562e-17) +(1.110223025e-16 0 -1.387778781e-17) +(0 0 0) +(1.110223025e-16 0 0) +(-1.110223025e-16 0 2.775557562e-17) +(-1.110223025e-16 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(1.110223025e-16 0 -1.110223025e-16) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 -2.775557562e-17) +(1.110223025e-16 0 2.775557562e-17) +(1.110223025e-16 0 0) +(1.110223025e-16 0 0) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 0) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(0 0 -5.551115123e-17) +(0 0 -2.775557562e-17) +(0 0 -1.387778781e-17) +(2.220446049e-16 0 0) +(0 0 0) +(0 0 2.775557562e-17) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 -1.110223025e-16) +(1.110223025e-16 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 -2.775557562e-17) +(1.110223025e-16 0 2.775557562e-17) +(0 0 0) +(1.110223025e-16 0 0) +(2.220446049e-16 0 -5.551115123e-17) +(1.110223025e-16 0 0) +(1.110223025e-16 0 -5.551115123e-17) +(1.110223025e-16 0 5.551115123e-17) +(6.661338148e-16 0 5.551115123e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 5.551115123e-17) +(4.440892099e-16 0 1.110223025e-16) +(4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(6.661338148e-16 0 0) +(2.220446049e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(6.661338148e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 0) +(8.881784197e-16 0 5.551115123e-17) +(6.661338148e-16 0 5.551115123e-17) +(2.220446049e-16 0 1.387778781e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 0) +(8.881784197e-16 0 -8.326672685e-17) +(0 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 1.110223025e-16) +(2.220446049e-16 0 1.665334537e-16) +(6.661338148e-16 0 5.551115123e-17) +(0 0 0) +(0 0 2.775557562e-17) +(0 0 -1.387778781e-17) +(-4.440892099e-16 0 0) +(0 0 1.387778781e-17) +(0 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(6.661338148e-16 0 -1.110223025e-16) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 5.551115123e-17) +(4.440892099e-16 0 1.110223025e-16) +(2.220446049e-16 0 4.163336342e-17) +(0 0 0) +(4.440892099e-16 0 1.387778781e-17) +(2.220446049e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(0 0 0) +(8.881784197e-16 0 5.551115123e-17) +(4.440892099e-16 0 5.551115123e-17) +(4.440892099e-16 0 1.387778781e-17) +(4.440892099e-16 0 0) +(0 0 0) +(8.881784197e-16 0 -8.326672685e-17) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 1.110223025e-16) +(4.440892099e-16 0 5.551115123e-17) +(4.440892099e-16 0 0) +(2.220446049e-16 0 5.551115123e-17) +(6.661338148e-16 0 1.110223025e-16) +(8.881784197e-16 0 4.163336342e-17) +(4.440892099e-16 0 0) +(0 0 0) +(2.220446049e-16 0 -2.775557562e-17) +(2.220446049e-16 0 -5.551115123e-17) +(4.440892099e-16 0 -5.551115123e-17) +(4.440892099e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 0) +(4.440892099e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(2.220446049e-16 0 1.387778781e-17) +(0 0 0) +(0 0 0) +(4.440892099e-16 0 -8.326672685e-17) +(-4.440892099e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 1.110223025e-16) +(4.440892099e-16 0 1.665334537e-16) +(4.440892099e-16 0 5.551115123e-17) +(0 0 0) +(0 0 2.775557562e-17) +(-2.220446049e-16 0 -1.387778781e-17) +(0 0 0) +(-2.220446049e-16 0 1.387778781e-17) +(0 0 -2.775557562e-17) +(2.220446049e-16 0 -5.551115123e-17) +(4.440892099e-16 0 -5.551115123e-17) +(4.440892099e-16 0 -1.110223025e-16) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 0) +(4.440892099e-16 0 5.551115123e-17) +(6.661338148e-16 0 1.110223025e-16) +(8.881784197e-16 0 4.163336342e-17) +(0 0 0) +(0 0 1.387778781e-17) +(4.440892099e-16 0 -2.775557562e-17) +(4.440892099e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(0 0 0) +(6.661338148e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(4.440892099e-16 0 1.387778781e-17) +(0 0 0) +(2.220446049e-16 0 0) +(6.661338148e-16 0 -8.326672685e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 1.110223025e-16) +(0 0 5.551115123e-17) +(4.440892099e-16 0 0) +(0 0 5.551115123e-17) +(6.661338148e-16 0 1.110223025e-16) +(4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(0 0 0) +(0 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(4.440892099e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(-4.440892099e-16 0 0) +(4.440892099e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(2.220446049e-16 0 1.387778781e-17) +(0 0 0) +(2.220446049e-16 0 0) +(4.440892099e-16 0 -8.326672685e-17) +(-4.440892099e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-4.440892099e-16 0 1.110223025e-16) +(2.220446049e-16 0 1.665334537e-16) +(6.661338148e-16 0 5.551115123e-17) +(2.220446049e-16 0 0) +(2.220446049e-16 0 2.775557562e-17) +(-2.220446049e-16 0 -1.387778781e-17) +(-2.220446049e-16 0 0) +(0 0 1.387778781e-17) +(2.220446049e-16 0 -2.775557562e-17) +(2.220446049e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -1.110223025e-16) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 0) +(0 0 5.551115123e-17) +(2.220446049e-16 0 1.110223025e-16) +(4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(-2.220446049e-16 0 1.387778781e-17) +(0 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(0 0 -1.110223025e-16) +(-2.220446049e-16 0 0) +(4.440892099e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(4.440892099e-16 0 1.387778781e-17) +(0 0 0) +(0 0 0) +(4.440892099e-16 0 -8.326672685e-17) +(-2.220446049e-16 0 5.551115123e-17) +(0 0 5.551115123e-17) +(-2.220446049e-16 0 1.110223025e-16) +(2.220446049e-16 0 5.551115123e-17) +(0 0 0) +(2.220446049e-16 0 5.551115123e-17) +(6.661338148e-16 0 1.110223025e-16) +(4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(2.220446049e-16 0 0) +(2.220446049e-16 0 -2.775557562e-17) +(2.220446049e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(-2.220446049e-16 0 0) +(4.440892099e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(2.220446049e-16 0 1.387778781e-17) +(0 0 0) +(4.440892099e-16 0 0) +(4.440892099e-16 0 -8.326672685e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 1.110223025e-16) +(4.440892099e-16 0 1.665334537e-16) +(4.440892099e-16 0 5.551115123e-17) +(0 0 0) +(0 0 2.775557562e-17) +(0 0 -1.387778781e-17) +(0 0 0) +(0 0 1.387778781e-17) +(0 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(4.440892099e-16 0 -5.551115123e-17) +(4.440892099e-16 0 -1.110223025e-16) +(2.220446049e-16 0 5.551115123e-17) +(4.440892099e-16 0 0) +(2.220446049e-16 0 5.551115123e-17) +(4.440892099e-16 0 1.110223025e-16) +(4.440892099e-16 0 4.163336342e-17) +(0 0 0) +(0 0 1.387778781e-17) +(2.220446049e-16 0 -2.775557562e-17) +(0 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(2.220446049e-16 0 -5.551115123e-17) +(-2.220446049e-16 0 -1.110223025e-16) +(0 0 0) +(4.440892099e-16 0 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 0 1.387778781e-17) +(0 0 0) +(0 0 0) +(4.440892099e-16 0 -8.326672685e-17) +(-2.220446049e-16 0 5.551115123e-17) +(-2.220446049e-16 0 5.551115123e-17) +(0 0 1.110223025e-16) +(-5.551115123e-17 1.110223025e-16 0) +(-5.551115123e-17 5.551115123e-17 5.551115123e-17) +(5.551115123e-17 0 -1.110223025e-16) +(-5.551115123e-17 -2.775557562e-16 1.665334537e-16) +(0 5.551115123e-17 1.665334537e-16) +(-2.775557562e-17 -5.551115123e-17 5.551115123e-17) +(0 5.551115123e-17 5.551115123e-17) +(0 1.110223025e-16 5.551115123e-17) +(0 -5.551115123e-17 0) +(3.469446952e-18 -1.110223025e-16 0) +(-1.110223025e-16 0 5.551115123e-17) +(0 5.551115123e-17 5.551115123e-17) +(5.551115123e-17 -5.551115123e-17 0) +(-5.551115123e-17 -2.775557562e-16 1.110223025e-16) +(0 5.551115123e-17 0) +(-2.775557562e-17 0 -5.551115123e-17) +(0 5.551115123e-17 0) +(-1.387778781e-17 -5.551115123e-17 1.110223025e-16) +(0 -5.551115123e-17 5.551115123e-17) +(3.469446952e-18 -1.110223025e-16 -5.551115123e-17) +(5.551115123e-17 0 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(0 0 0) +(-2.775557562e-17 5.551115123e-17 0) +(-2.775557562e-17 -1.110223025e-16 5.551115123e-17) +(-2.775557562e-17 -1.110223025e-16 5.551115123e-17) +(0 -5.551115123e-17 5.551115123e-17) +(-2.775557562e-17 -5.551115123e-17 5.551115123e-17) +(0 -5.551115123e-17 0) +(-6.938893904e-18 -1.110223025e-16 5.551115123e-17) +(-5.551115123e-17 -1.110223025e-16 5.551115123e-17) +(-5.551115123e-17 0 2.775557562e-17) +(0 -5.551115123e-17 0) +(-5.551115123e-17 -5.551115123e-17 8.326672685e-17) +(0 0 2.775557562e-17) +(0 0 0) +(0 -5.551115123e-17 0) +(0 5.551115123e-17 -2.775557562e-17) +(0 5.551115123e-17 2.775557562e-17) +(-6.938893904e-18 -5.551115123e-17 5.551115123e-17) +(-1.110223025e-16 -1.110223025e-16 1.387778781e-17) +(-5.551115123e-17 0 1.387778781e-17) +(1.110223025e-16 1.110223025e-16 -1.387778781e-17) +(-2.775557562e-17 5.551115123e-17 1.387778781e-17) +(-2.775557562e-17 -1.110223025e-16 0) +(-2.775557562e-17 5.551115123e-17 0) +(-5.551115123e-17 -1.665334537e-16 4.163336342e-17) +(-1.387778781e-17 -1.110223025e-16 0) +(6.938893904e-18 0 -1.387778781e-17) +(-3.469446952e-18 -1.110223025e-16 4.163336342e-17) +(-5.551115123e-17 -5.551115123e-17 0) +(-5.551115123e-17 -5.551115123e-17 0) +(0 0 0) +(-2.775557562e-17 0 0) +(5.551115123e-17 0 0) +(0 5.551115123e-17 0) +(0 5.551115123e-17 0) +(-1.387778781e-17 5.551115123e-17 0) +(0 -5.551115123e-17 0) +(-3.469446952e-18 -5.551115123e-17 0) +(0 -1.110223025e-16 1.387778781e-17) +(-1.110223025e-16 0 -1.387778781e-17) +(5.551115123e-17 5.551115123e-17 0) +(0 -5.551115123e-17 -1.387778781e-17) +(0 -5.551115123e-17 0) +(-1.387778781e-16 -1.665334537e-16 -4.163336342e-17) +(-5.551115123e-17 0 -1.387778781e-17) +(1.387778781e-17 -1.665334537e-16 1.387778781e-17) +(6.938893904e-18 5.551115123e-17 1.387778781e-17) +(-3.469446952e-18 5.551115123e-17 -4.163336342e-17) +(5.551115123e-17 0 0) +(-1.110223025e-16 0 -2.775557562e-17) +(5.551115123e-17 0 2.775557562e-17) +(-2.775557562e-17 5.551115123e-17 -5.551115123e-17) +(-2.775557562e-17 0 -5.551115123e-17) +(-2.775557562e-17 -1.665334537e-16 -5.551115123e-17) +(0 -5.551115123e-17 0) +(-1.387778781e-17 0 0) +(0 -5.551115123e-17 -2.775557562e-17) +(-6.938893904e-18 -1.110223025e-16 -8.326672685e-17) +(-5.551115123e-17 -1.110223025e-16 -5.551115123e-17) +(-5.551115123e-17 0 -5.551115123e-17) +(0 -5.551115123e-17 0) +(-5.551115123e-17 -5.551115123e-17 -1.110223025e-16) +(0 0 -5.551115123e-17) +(0 0 5.551115123e-17) +(0 -5.551115123e-17 -5.551115123e-17) +(0 5.551115123e-17 5.551115123e-17) +(0 5.551115123e-17 0) +(-6.938893904e-18 -5.551115123e-17 5.551115123e-17) +(-5.551115123e-17 1.110223025e-16 5.551115123e-17) +(-5.551115123e-17 5.551115123e-17 -5.551115123e-17) +(5.551115123e-17 0 0) +(-1.110223025e-16 -2.775557562e-16 -1.110223025e-16) +(0 5.551115123e-17 -5.551115123e-17) +(-2.775557562e-17 0 -1.110223025e-16) +(0 5.551115123e-17 0) +(0 1.110223025e-16 -5.551115123e-17) +(0 -5.551115123e-17 0) +(3.469446952e-18 -1.110223025e-16 5.551115123e-17) +(-1.110223025e-16 0 -1.110223025e-16) +(0 5.551115123e-17 -5.551115123e-17) +(5.551115123e-17 -5.551115123e-17 0) +(-5.551115123e-17 -2.775557562e-16 -1.665334537e-16) +(0 5.551115123e-17 -5.551115123e-17) +(-2.775557562e-17 0 0) +(0 5.551115123e-17 -1.110223025e-16) +(-1.387778781e-17 -5.551115123e-17 -5.551115123e-17) +(0 -5.551115123e-17 0) +(3.469446952e-18 -1.110223025e-16 -1.110223025e-16) +(-1.110223025e-16 3.469446952e-18 0) +(-1.110223025e-16 0 0) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(-1.110223025e-16 -5.551115123e-17 2.220446049e-16) +(5.551115123e-17 2.775557562e-17 1.665334537e-16) +(-1.665334537e-16 -1.110223025e-16 1.665334537e-16) +(0 5.551115123e-17 5.551115123e-17) +(0 -1.665334537e-16 1.665334537e-16) +(0 0 5.551115123e-17) +(0 3.469446952e-18 -5.551115123e-17) +(-1.110223025e-16 0 5.551115123e-17) +(0 0 1.110223025e-16) +(-1.110223025e-16 0 0) +(0 -2.775557562e-17 5.551115123e-17) +(0 0 0) +(-1.665334537e-16 -1.110223025e-16 1.110223025e-16) +(-5.551115123e-17 5.551115123e-17 0) +(0 -1.665334537e-16 1.110223025e-16) +(-5.551115123e-17 0 1.110223025e-16) +(-1.665334537e-16 0 5.551115123e-17) +(5.551115123e-17 -6.938893904e-18 0) +(-5.551115123e-17 -2.775557562e-17 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(-1.665334537e-16 -8.326672685e-17 5.551115123e-17) +(-5.551115123e-17 -5.551115123e-17 5.551115123e-17) +(5.551115123e-17 5.551115123e-17 0) +(-5.551115123e-17 0 5.551115123e-17) +(0 5.551115123e-17 -5.551115123e-17) +(-1.110223025e-16 3.469446952e-18 5.551115123e-17) +(2.220446049e-16 0 0) +(0 -1.387778781e-17 0) +(0 0 0) +(1.110223025e-16 2.775557562e-17 -2.775557562e-17) +(-1.110223025e-16 -2.775557562e-17 2.775557562e-17) +(-5.551115123e-17 -8.326672685e-17 8.326672685e-17) +(0 -5.551115123e-17 2.775557562e-17) +(-5.551115123e-17 -5.551115123e-17 0) +(-1.110223025e-16 -5.551115123e-17 5.551115123e-17) +(-1.110223025e-16 -3.469446952e-18 4.163336342e-17) +(0 -6.938893904e-18 1.387778781e-17) +(-5.551115123e-17 1.387778781e-17 1.387778781e-17) +(-1.665334537e-16 -2.775557562e-17 4.163336342e-17) +(0 0 0) +(-1.110223025e-16 -2.775557562e-17 0) +(-1.110223025e-16 -1.110223025e-16 2.775557562e-17) +(5.551115123e-17 -5.551115123e-17 1.387778781e-17) +(0 -5.551115123e-17 2.775557562e-17) +(-5.551115123e-17 0 0) +(-5.551115123e-17 -3.469446952e-18 0) +(1.665334537e-16 0 0) +(-1.110223025e-16 -1.387778781e-17 0) +(5.551115123e-17 0 0) +(0 0 0) +(0 -2.775557562e-17 0) +(-1.665334537e-16 -8.326672685e-17 0) +(5.551115123e-17 0 0) +(-5.551115123e-17 -5.551115123e-17 0) +(-5.551115123e-17 -1.110223025e-16 0) +(-1.110223025e-16 -3.469446952e-18 -4.163336342e-17) +(0 -6.938893904e-18 0) +(-5.551115123e-17 1.387778781e-17 1.387778781e-17) +(-1.110223025e-16 0 -1.387778781e-17) +(0 0 0) +(-5.551115123e-17 2.775557562e-17 0) +(5.551115123e-17 -2.775557562e-17 -1.387778781e-17) +(0 5.551115123e-17 -1.387778781e-17) +(0 -1.110223025e-16 -2.775557562e-17) +(5.551115123e-17 5.551115123e-17 2.775557562e-17) +(-1.665334537e-16 0 -8.326672685e-17) +(5.551115123e-17 -6.938893904e-18 -2.775557562e-17) +(-5.551115123e-17 -2.775557562e-17 -2.775557562e-17) +(0 0 0) +(5.551115123e-17 0 -2.775557562e-17) +(-1.665334537e-16 -2.775557562e-17 -5.551115123e-17) +(-5.551115123e-17 -5.551115123e-17 -5.551115123e-17) +(0 0 -2.775557562e-17) +(-5.551115123e-17 0 -5.551115123e-17) +(0 5.551115123e-17 0) +(-1.110223025e-16 3.469446952e-18 5.551115123e-17) +(2.220446049e-16 0 5.551115123e-17) +(0 -1.387778781e-17 0) +(0 0 -5.551115123e-17) +(1.110223025e-16 2.775557562e-17 0) +(-1.110223025e-16 -2.775557562e-17 -5.551115123e-17) +(-5.551115123e-17 -8.326672685e-17 -1.110223025e-16) +(0 -5.551115123e-17 -5.551115123e-17) +(-5.551115123e-17 -5.551115123e-17 -5.551115123e-17) +(-1.110223025e-16 -5.551115123e-17 -5.551115123e-17) +(0 0 5.551115123e-17) +(-1.110223025e-16 0 0) +(0 0 5.551115123e-17) +(0 0 0) +(-1.110223025e-16 -5.551115123e-17 -1.665334537e-16) +(0 2.775557562e-17 -5.551115123e-17) +(-1.665334537e-16 -1.110223025e-16 -1.110223025e-16) +(0 5.551115123e-17 0) +(0 -1.665334537e-16 -1.110223025e-16) +(0 0 -5.551115123e-17) +(0 3.469446952e-18 -1.110223025e-16) +(-1.110223025e-16 0 0) +(0 0 -5.551115123e-17) +(-1.110223025e-16 0 -1.110223025e-16) +(0 -2.775557562e-17 5.551115123e-17) +(0 0 -5.551115123e-17) +(-1.665334537e-16 -1.110223025e-16 -1.665334537e-16) +(-5.551115123e-17 5.551115123e-17 5.551115123e-17) +(0 -1.665334537e-16 -1.665334537e-16) +(-5.551115123e-17 0 5.551115123e-17) +(0 1.110223025e-16 -5.551115123e-17) +(5.551115123e-17 5.551115123e-17 5.551115123e-17) +(0 0 0) +(5.551115123e-17 0 0) +(0 -5.551115123e-17 -1.110223025e-16) +(2.775557562e-17 0 -5.551115123e-17) +(0 -1.110223025e-16 5.551115123e-17) +(1.387778781e-17 -5.551115123e-17 0) +(0 -5.551115123e-17 0) +(-3.469446952e-18 1.110223025e-16 0) +(0 1.110223025e-16 0) +(5.551115123e-17 -5.551115123e-17 5.551115123e-17) +(0 0 0) +(5.551115123e-17 0 -5.551115123e-17) +(-2.775557562e-17 -5.551115123e-17 5.551115123e-17) +(2.775557562e-17 0 1.110223025e-16) +(0 0 0) +(0 0 0) +(-1.387778781e-17 5.551115123e-17 -1.110223025e-16) +(0 1.110223025e-16 0) +(5.551115123e-17 -1.110223025e-16 1.110223025e-16) +(5.551115123e-17 0 5.551115123e-17) +(0 0 5.551115123e-17) +(8.326672685e-17 -1.665334537e-16 5.551115123e-17) +(2.775557562e-17 -1.110223025e-16 5.551115123e-17) +(-2.775557562e-17 5.551115123e-17 0) +(0 0 5.551115123e-17) +(1.387778781e-17 0 0) +(0 1.665334537e-16 0) +(3.469446952e-18 -5.551115123e-17 0) +(-5.551115123e-17 0 0) +(5.551115123e-17 0 5.551115123e-17) +(5.551115123e-17 -5.551115123e-17 2.775557562e-17) +(8.326672685e-17 -1.665334537e-16 5.551115123e-17) +(2.775557562e-17 -1.665334537e-16 0) +(-2.775557562e-17 1.110223025e-16 -2.775557562e-17) +(0 0 0) +(2.775557562e-17 -5.551115123e-17 2.775557562e-17) +(0 5.551115123e-17 2.775557562e-17) +(3.469446952e-18 -5.551115123e-17 2.775557562e-17) +(-5.551115123e-17 1.665334537e-16 -2.775557562e-17) +(1.110223025e-16 1.110223025e-16 1.387778781e-17) +(-5.551115123e-17 5.551115123e-17 0) +(2.775557562e-17 5.551115123e-17 1.387778781e-17) +(-2.775557562e-17 -5.551115123e-17 0) +(2.775557562e-17 -1.110223025e-16 2.775557562e-17) +(2.775557562e-17 0 1.387778781e-17) +(1.387778781e-17 0 0) +(6.938893904e-18 0 0) +(3.469446952e-18 -1.110223025e-16 4.163336342e-17) +(5.551115123e-17 0 0) +(5.551115123e-17 -5.551115123e-17 0) +(0 0 0) +(2.775557562e-17 0 0) +(2.775557562e-17 0 0) +(0 -1.110223025e-16 0) +(0 5.551115123e-17 0) +(1.387778781e-17 -1.110223025e-16 0) +(0 5.551115123e-17 0) +(6.938893904e-18 -5.551115123e-17 0) +(1.110223025e-16 -1.110223025e-16 -2.775557562e-17) +(0 1.110223025e-16 -2.775557562e-17) +(-5.551115123e-17 1.665334537e-16 1.387778781e-17) +(5.551115123e-17 -1.110223025e-16 -2.775557562e-17) +(0 -5.551115123e-17 0) +(-5.551115123e-17 1.110223025e-16 1.387778781e-17) +(2.775557562e-17 -1.665334537e-16 -2.775557562e-17) +(1.387778781e-17 0 0) +(6.938893904e-18 -5.551115123e-17 -1.387778781e-17) +(0 -1.110223025e-16 -4.163336342e-17) +(5.551115123e-17 -1.110223025e-16 -5.551115123e-17) +(5.551115123e-17 0 -2.775557562e-17) +(0 0 -2.775557562e-17) +(8.326672685e-17 -1.665334537e-16 -8.326672685e-17) +(2.775557562e-17 -1.110223025e-16 0) +(-2.775557562e-17 5.551115123e-17 2.775557562e-17) +(0 0 0) +(1.387778781e-17 0 0) +(0 1.665334537e-16 -2.775557562e-17) +(3.469446952e-18 -5.551115123e-17 0) +(-1.110223025e-16 1.110223025e-16 1.110223025e-16) +(5.551115123e-17 -5.551115123e-17 -5.551115123e-17) +(0 0 0) +(8.326672685e-17 -1.665334537e-16 0) +(8.326672685e-17 -1.665334537e-16 -5.551115123e-17) +(0 0 -5.551115123e-17) +(0 0 -5.551115123e-17) +(2.775557562e-17 -5.551115123e-17 -5.551115123e-17) +(0 -5.551115123e-17 -5.551115123e-17) +(-3.469446952e-18 -5.551115123e-17 -5.551115123e-17) +(0 1.110223025e-16 -5.551115123e-17) +(5.551115123e-17 5.551115123e-17 -5.551115123e-17) +(0 0 0) +(5.551115123e-17 0 5.551115123e-17) +(0 -5.551115123e-17 -5.551115123e-17) +(2.775557562e-17 0 5.551115123e-17) +(0 -1.110223025e-16 0) +(1.387778781e-17 -5.551115123e-17 -5.551115123e-17) +(0 -5.551115123e-17 -5.551115123e-17) +(-3.469446952e-18 1.110223025e-16 5.551115123e-17) +(0 1.110223025e-16 -5.551115123e-17) +(5.551115123e-17 -5.551115123e-17 -5.551115123e-17) +(0 0 0) +(8.326672685e-17 0 0) +(0 0 -5.551115123e-17) +(2.775557562e-17 -1.110223025e-16 -1.110223025e-16) +(0 0 -5.551115123e-17) +(0 0 0) +(0 -5.551115123e-17 0) +(-3.469446952e-18 1.110223025e-16 0) +(0 3.469446952e-18 0) +(0 0 0) +(5.551115123e-17 -1.387778781e-17 5.551115123e-17) +(-5.551115123e-17 0 5.551115123e-17) +(5.551115123e-17 -5.551115123e-17 1.110223025e-16) +(0 0 -1.110223025e-16) +(1.665334537e-16 0 5.551115123e-17) +(5.551115123e-17 5.551115123e-17 0) +(5.551115123e-17 0 5.551115123e-17) +(1.110223025e-16 -5.551115123e-17 1.110223025e-16) +(1.110223025e-16 0 0) +(-1.110223025e-16 1.387778781e-17 -1.110223025e-16) +(0 0 1.110223025e-16) +(-5.551115123e-17 0 0) +(5.551115123e-17 -5.551115123e-17 1.110223025e-16) +(-5.551115123e-17 0 5.551115123e-17) +(1.665334537e-16 -8.326672685e-17 0) +(0 5.551115123e-17 5.551115123e-17) +(-5.551115123e-17 0 5.551115123e-17) +(5.551115123e-17 -5.551115123e-17 0) +(-5.551115123e-17 -6.938893904e-18 0) +(-5.551115123e-17 -6.938893904e-18 0) +(-5.551115123e-17 0 -5.551115123e-17) +(5.551115123e-17 2.775557562e-17 5.551115123e-17) +(0 0 5.551115123e-17) +(0 0 5.551115123e-17) +(1.110223025e-16 -5.551115123e-17 1.110223025e-16) +(5.551115123e-17 0 5.551115123e-17) +(5.551115123e-17 0 0) +(0 0 0) +(-5.551115123e-17 -6.938893904e-18 2.775557562e-17) +(-5.551115123e-17 -6.938893904e-18 2.775557562e-17) +(0 -1.387778781e-17 0) +(5.551115123e-17 2.775557562e-17 0) +(1.110223025e-16 0 0) +(0 -2.775557562e-17 0) +(1.110223025e-16 -5.551115123e-17 8.326672685e-17) +(5.551115123e-17 0 0) +(5.551115123e-17 -1.110223025e-16 8.326672685e-17) +(0 0 0) +(0 -3.469446952e-18 4.163336342e-17) +(-5.551115123e-17 -6.938893904e-18 0) +(5.551115123e-17 1.387778781e-17 0) +(0 -5.551115123e-17 1.387778781e-17) +(1.110223025e-16 -8.326672685e-17 2.775557562e-17) +(5.551115123e-17 0 0) +(5.551115123e-17 -2.775557562e-17 2.775557562e-17) +(-5.551115123e-17 5.551115123e-17 0) +(0 -1.110223025e-16 1.387778781e-17) +(5.551115123e-17 5.551115123e-17 -2.775557562e-17) +(5.551115123e-17 -3.469446952e-18 0) +(5.551115123e-17 0 0) +(-5.551115123e-17 -1.387778781e-17 0) +(-5.551115123e-17 0 0) +(0 0 0) +(0 5.551115123e-17 0) +(0 -2.775557562e-17 0) +(5.551115123e-17 0 0) +(5.551115123e-17 0 0) +(5.551115123e-17 -1.110223025e-16 0) +(1.110223025e-16 -3.469446952e-18 -4.163336342e-17) +(-5.551115123e-17 -6.938893904e-18 1.387778781e-17) +(5.551115123e-17 1.387778781e-17 0) +(1.665334537e-16 -2.775557562e-17 -2.775557562e-17) +(1.110223025e-16 -8.326672685e-17 -2.775557562e-17) +(5.551115123e-17 0 0) +(5.551115123e-17 -2.775557562e-17 -2.775557562e-17) +(-1.110223025e-16 5.551115123e-17 1.387778781e-17) +(1.110223025e-16 -5.551115123e-17 -2.775557562e-17) +(2.220446049e-16 -1.110223025e-16 -2.775557562e-17) +(-5.551115123e-17 -6.938893904e-18 0) +(-5.551115123e-17 -6.938893904e-18 0) +(-5.551115123e-17 0 2.775557562e-17) +(5.551115123e-17 2.775557562e-17 0) +(0 0 0) +(0 0 0) +(1.110223025e-16 -5.551115123e-17 -8.326672685e-17) +(5.551115123e-17 0 0) +(5.551115123e-17 0 0) +(0 0 0) +(-5.551115123e-17 -6.938893904e-18 -5.551115123e-17) +(-5.551115123e-17 0 -5.551115123e-17) +(5.551115123e-17 -2.775557562e-17 -5.551115123e-17) +(5.551115123e-17 0 -5.551115123e-17) +(1.665334537e-16 -2.775557562e-17 -5.551115123e-17) +(1.110223025e-16 -2.775557562e-17 -5.551115123e-17) +(1.110223025e-16 -2.775557562e-17 -5.551115123e-17) +(0 5.551115123e-17 0) +(0 -1.110223025e-16 -5.551115123e-17) +(-1.110223025e-16 5.551115123e-17 1.110223025e-16) +(0 3.469446952e-18 5.551115123e-17) +(0 0 -5.551115123e-17) +(5.551115123e-17 -1.387778781e-17 -1.110223025e-16) +(-5.551115123e-17 0 0) +(5.551115123e-17 -5.551115123e-17 0) +(0 0 -5.551115123e-17) +(1.665334537e-16 0 0) +(5.551115123e-17 5.551115123e-17 -5.551115123e-17) +(5.551115123e-17 0 -5.551115123e-17) +(1.110223025e-16 -5.551115123e-17 -5.551115123e-17) +(0 3.469446952e-18 0) +(0 0 0) +(0 0 -5.551115123e-17) +(-5.551115123e-17 0 -5.551115123e-17) +(1.110223025e-16 -2.775557562e-17 -1.110223025e-16) +(-5.551115123e-17 2.775557562e-17 -5.551115123e-17) +(1.665334537e-16 0 -5.551115123e-17) +(0 5.551115123e-17 1.110223025e-16) +(-5.551115123e-17 0 -5.551115123e-17) +(1.665334537e-16 -5.551115123e-17 -1.110223025e-16) +) +; } ) diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/H2O b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/H2O deleted file mode 100644 index dec934af1b..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/H2O +++ /dev/null @@ -1,35 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object H2O; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0; - -boundaryField -{ - walls - { - type zeroGradient; - } - wallFilm - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/N2 b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/N2 deleted file mode 100644 index 05763fe098..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/N2 +++ /dev/null @@ -1,35 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object N2; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.79; - -boundaryField -{ - walls - { - type zeroGradient; - } - wallFilm - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/O2 b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/O2 deleted file mode 100644 index ff8e637edb..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/O2 +++ /dev/null @@ -1,35 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object O2; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.21; - -boundaryField -{ - walls - { - type zeroGradient; - } - wallFilm - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/T b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/T deleted file mode 100644 index 92a1e9a092..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/T +++ /dev/null @@ -1,41 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object T; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - walls - { - type fixedValue; - value uniform 300; - } - wallFilm - { - type zeroGradient; -// type directMapped; -// fieldName Tsf; -// average 300; -// setAverage no; -// value uniform 300; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/U b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/U deleted file mode 100644 index fca4b938f2..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/U +++ /dev/null @@ -1,42 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ 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 -{ - walls - { - type fixedValue; - value uniform (0 0 0); - } - wallFilm - { - type fixedValue; - value uniform (0 0 0); -// type directMapped; -// fieldName Usf; -// average (0 0 0); -// setAverage no; -// value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/alphat b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/alphat deleted file mode 100644 index e2b2f9b30f..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/alphat +++ /dev/null @@ -1,43 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object alphat; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -1 0 0 0 0]; - -internalField uniform 1e-7; - -boundaryField -{ - walls - { - type alphatWallFunction; - Prt 0.85; - value uniform 0; - } - wallFilm - { - type alphatFilmWallFunction; - B 5.5; - yPlusCrit 11.05; - Cmu 0.09; - kappa 0.41; - Prt 0.85; - value uniform 0; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/epsilon b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/epsilon deleted file mode 100644 index d94a1b9fc8..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/epsilon +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object epsilon; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 2 -3 0 0 0 0]; - -internalField uniform 1e-7; - -boundaryField -{ - walls - { - type compressible::epsilonWallFunction; - value uniform 1e-7; - } - wallFilm - { - type compressible::epsilonWallFunction; - value uniform 1e-7; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/htcConv b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/htcConv deleted file mode 100644 index fa26b072e7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/htcConv +++ /dev/null @@ -1,38 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object htcConv; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 0 -1 1 0 0 0]; - -internalField uniform 0; - -boundaryField -{ - walls - { - type calculated; - value uniform 0; - } - wallFilm - { - type htcConvection; - L 1.0; - value uniform 0; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/k b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/k deleted file mode 100644 index 8579d275a7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/k +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object k; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 2 -2 0 0 0 0]; - -internalField uniform 1e-5; - -boundaryField -{ - walls - { - type compressible::kqRWallFunction; - value uniform 1e-5; - } - wallFilm - { - type compressible::kqRWallFunction; - value uniform 1e-5; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/mut b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/mut deleted file mode 100644 index 08f950124d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/mut +++ /dev/null @@ -1,39 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object mut; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -1 0 0 0 0]; - -internalField uniform 1e-7; - -boundaryField -{ - walls - { - type mutkWallFunction; - value uniform 0; - } - wallFilm - { - type mutkFilmWallFunction; - B 5.5; - yPlusCrit 11.05; - value uniform 0; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p deleted file mode 100644 index 5d650ba2c7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: 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 100000; - -boundaryField -{ - walls - { - type calculated; - value $internalField; - } - wallFilm - { - type calculated; - value $internalField; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p_rgh b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p_rgh deleted file mode 100644 index 08e0be0037..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p_rgh +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object p_rgh; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -2 0 0 0 0]; - -internalField uniform 100000; - -boundaryField -{ - walls - { - type buoyantPressure; - value uniform 100000; - } - wallFilm - { - type buoyantPressure; - value uniform 100000; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Tf deleted file mode 100644 index 1978eb5527..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Tf +++ /dev/null @@ -1,51 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/region0_to_"(region0_to.*)"Region_masterRegion"; - object Tf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - // cyclic boundaries between film patches - "(cube[0-9][0-9]_side[0-9]_to_cube[0-9][0-9]_side[0-9])" - { - type nonuniformTransformCyclic; - } - - // top film surface - "(.*top)" - { - type zeroGradient; - } - - // mapped boundaries - "(region0_to.*)" - { -// type zeroGradient; - type fixedValue; - value uniform 350.0; - } - - // floor sides - walls - { - type zeroGradient; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Uf deleted file mode 100644 index 703b25df0d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Uf +++ /dev/null @@ -1,50 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volVectorField; - location "0/region0_to_"(region0_to.*)"Region_masterRegion"; - object Uf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 -1 0 0 0 0]; - -internalField uniform (0 0 0); - -boundaryField -{ - // cyclic boundaries between film patches - "(cube[0-9][0-9]_side[0-9]_to_cube[0-9][0-9]_side[0-9])" - { - type nonuniformTransformCyclic; - } - - // top film surface - "(.*top)" - { - type slip; - } - - // mapped boundaries - "(region0_to.*)" - { - type slip; - } - - // floor sides - walls - { - type fixedValue; - value uniform (0 0 0); - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/deltaf deleted file mode 100644 index 04f7abcaf8..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/deltaf +++ /dev/null @@ -1,49 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/region0_to_"(region0_to.*)"Region_masterRegion"; - object deltaf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 0 0 0 0 0]; - -internalField uniform 0.0; - -boundaryField -{ - // cyclic boundaries between film patches - "(cube[0-9][0-9]_side[0-9]_to_cube[0-9][0-9]_side[0-9])" - { - type nonuniformTransformCyclic; - } - - // top film surface - "(.*top)" - { - type zeroGradient; - } - - // mapped boundaries - "(region0_to.*)" - { - type zeroGradient; - } - - // floor sides - walls - { - type zeroGradient; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allclean b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allclean index 306d060536..f911c216cc 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allclean +++ b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allclean @@ -9,7 +9,6 @@ cleanCase rm -rf system/wallFilmRegion rm -rf constant/wallFilmRegion rm -rf 0 -cp -rf 0.org 0 - rm -f *.obj +# ----------------------------------------------------------------- end-of-file diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allrun.pre b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allrun.pre index e06272a5dc..5583402201 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allrun.pre +++ b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/Allrun.pre @@ -4,6 +4,8 @@ cd ${0%/*} || exit 1 # run from this directory # Source tutorial run functions . $WM_PROJECT_DIR/bin/tools/RunFunctions +cp -rf 0.org 0 + # create the underlying block mesh runApplication blockMesh diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/H2O b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/H2O deleted file mode 100644 index 78cb5de15d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/H2O +++ /dev/null @@ -1,44 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object H2O; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.0; - -boundaryField -{ - inlet - { - type zeroGradient; - } - outlet - { - type zeroGradient; - } - sides - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/N2 b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/N2 deleted file mode 100644 index f5bfe9f817..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/N2 +++ /dev/null @@ -1,44 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object N2; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.79; - -boundaryField -{ - inlet - { - type zeroGradient; - } - outlet - { - type zeroGradient; - } - sides - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/O2 b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/O2 deleted file mode 100644 index 8a43c3075d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/O2 +++ /dev/null @@ -1,44 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object O2; -} - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.21; - -boundaryField -{ - inlet - { - type zeroGradient; - } - outlet - { - type zeroGradient; - } - sides - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/T b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/T deleted file mode 100644 index 1ead8b23f0..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/T +++ /dev/null @@ -1,46 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - location "0"; - class volScalarField; - object T; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - inlet - { - type fixedValue; - value uniform 300; - } - outlet - { - type fixedValue; - value uniform 300; - } - sides - { - type fixedValue; - value uniform 300; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform 300; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/U b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/U deleted file mode 100644 index c786212d3c..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/U +++ /dev/null @@ -1,47 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ 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 -{ - inlet - { - type pressureInletOutletVelocity; - value uniform (0 0 0); - } - outlet - { - type pressureInletOutletVelocity; - value uniform (0 0 0); - } - sides - { - type pressureInletOutletVelocity; - value uniform (0 0 0); - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p deleted file mode 100644 index 19a74fc744..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p +++ /dev/null @@ -1,46 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: 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 100000; - -boundaryField -{ - inlet - { - type calculated; - value $internalField; - } - outlet - { - type calculated; - value $internalField; - } - sides - { - type calculated; - value $internalField; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type calculated; - value $internalField; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p_rgh b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p_rgh deleted file mode 100644 index 1e516ea6f7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p_rgh +++ /dev/null @@ -1,42 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object p_rgh; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -2 0 0 0 0]; - -internalField uniform 100000; - -boundaryField -{ - inlet - { - type buoyantPressure; - } - outlet - { - type buoyantPressure; - } - sides - { - type buoyantPressure; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type buoyantPressure; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Tf deleted file mode 100644 index a3e2b161af..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Tf +++ /dev/null @@ -1,52 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object Tf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - inlet - { - type fixedValue; - value uniform 300; - } - - outlet - { - type zeroGradient; - } - - sides - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Uf deleted file mode 100644 index 8597cdf0ab..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Uf +++ /dev/null @@ -1,54 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volVectorField; - location "0/wallFilmRegion"; - object Uf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 -1 0 0 0 0]; - -internalField uniform (0 0 0); - -boundaryField -{ - wallFilmFaces_top - { - type slip; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } - - inlet - { - type fixedValue; - value uniform (0 -0.075 0); - } - - outlet - { - type zeroGradient; - } - - sides - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/deltaf deleted file mode 100644 index bba9519604..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/deltaf +++ /dev/null @@ -1,52 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object deltaf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 0 0 0 0 0]; - -internalField uniform 0; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - inlet - { - type fixedValue; - value uniform 1e-3; - } - - outlet - { - type zeroGradient; - } - - sides - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allclean b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allclean index 50d71cadc3..4b9a47bd2e 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allclean +++ b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allclean @@ -1,4 +1,6 @@ #!/bin/sh +cd ${0%/*} || exit 1 # run from this directory + # Source tutorial clean functions . $WM_PROJECT_DIR/bin/tools/CleanFunctions @@ -6,8 +8,6 @@ cleanCase rm -rf constant/wallFilmRegion rm -rf 0 -cp -rf 0.org 0 - rm -f *.obj -#rm -rf VTK +# ----------------------------------------------------------------- end-of-file diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allrun.pre b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allrun.pre index a283228a85..0e3c1209c5 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allrun.pre +++ b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/Allrun.pre @@ -1,6 +1,8 @@ #!/bin/sh . $WM_PROJECT_DIR/bin/tools/RunFunctions +cp -rf 0.org 0 + runApplication blockMesh runApplication setSet -batch wallFilmRegion.setSet diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/H2O b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/H2O deleted file mode 100644 index 64df83a4f2..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/H2O +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object H2O; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.0; - -boundaryField -{ - sides - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/N2 b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/N2 deleted file mode 100644 index d3dce5d258..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/N2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object N2; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.79; - -boundaryField -{ - sides - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/O2 b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/O2 deleted file mode 100644 index d0bc40f235..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/O2 +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object O2; -} - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 0 0 0 0]; - -internalField uniform 0.21; - -boundaryField -{ - sides - { - type zeroGradient; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/T b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/T deleted file mode 100644 index ad505ad668..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/T +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - location "0"; - class volScalarField; - object T; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - sides - { - type fixedValue; - value uniform 300; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform 300; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/U b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/U deleted file mode 100644 index 31f4ae0927..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/U +++ /dev/null @@ -1,37 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ 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 -{ - sides - { - type pressureInletOutletVelocity; - value uniform (0 0 0); - } - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p deleted file mode 100644 index 0005f26b6d..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p +++ /dev/null @@ -1,36 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: 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 100000; - -boundaryField -{ - sides - { - type calculated; - value $internalField; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type calculated; - value $internalField; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p_rgh b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p_rgh deleted file mode 100644 index b9d1966fc7..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p_rgh +++ /dev/null @@ -1,34 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0"; - object p_rgh; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [1 -1 -2 0 0 0 0]; - -internalField uniform 100000; - -boundaryField -{ - sides - { - type buoyantPressure; - } - region0_to_wallFilmRegion_wallFilmFaces - { - type buoyantPressure; - } -} - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Tf b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Tf deleted file mode 100644 index fd1de85913..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Tf +++ /dev/null @@ -1,56 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object Tf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 0 0 1 0 0 0]; - -internalField uniform 300; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - side1 - { - type zeroGradient; - } - - side2 - { - type zeroGradient; - } - - side3 - { - type zeroGradient; - } - - side4 - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Uf b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Uf deleted file mode 100644 index 7fb4939a5c..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Uf +++ /dev/null @@ -1,61 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volVectorField; - location "0/wallFilmRegion"; - object Uf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 -1 0 0 0 0]; - -internalField uniform (0 0 0); - -boundaryField -{ - wallFilmFaces_top - { - type slip; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type fixedValue; - value uniform (0 0 0); - } - - side1 - { - type fixedValue; - value uniform (0 0 0); - } - - side2 - { - type fixedValue; - value uniform (0 0 0); - } - - side3 - { - type fixedValue; - value uniform (0 0 0); - } - - side4 - { - type fixedValue; - value uniform (0 0 0); - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/deltaf b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/deltaf deleted file mode 100644 index 5559afff93..0000000000 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/deltaf +++ /dev/null @@ -1,56 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: 2.0.0 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class volScalarField; - location "0/wallFilmRegion"; - object deltaf; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -dimensions [0 1 0 0 0 0 0]; - -internalField uniform 0.00013; - -boundaryField -{ - wallFilmFaces_top - { - type zeroGradient; - } - - region0_to_wallFilmRegion_wallFilmFaces - { - type zeroGradient; - } - - side1 - { - type zeroGradient; - } - - side2 - { - type zeroGradient; - } - - side3 - { - type zeroGradient; - } - - side4 - { - type zeroGradient; - } -} - - -// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allclean b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allclean index 50d71cadc3..4b9a47bd2e 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allclean +++ b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allclean @@ -1,4 +1,6 @@ #!/bin/sh +cd ${0%/*} || exit 1 # run from this directory + # Source tutorial clean functions . $WM_PROJECT_DIR/bin/tools/CleanFunctions @@ -6,8 +8,6 @@ cleanCase rm -rf constant/wallFilmRegion rm -rf 0 -cp -rf 0.org 0 - rm -f *.obj -#rm -rf VTK +# ----------------------------------------------------------------- end-of-file diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allrun.pre b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allrun.pre index 9a3ccd9521..14da52453e 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allrun.pre +++ b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/Allrun.pre @@ -1,6 +1,8 @@ #!/bin/sh . $WM_PROJECT_DIR/bin/tools/RunFunctions +cp -rf 0.org 0 + runApplication blockMesh runApplication setSet -batch wallFilmRegion.setSet