From 4018425e0bf65599829ed5f463eedbae72acb2da Mon Sep 17 00:00:00 2001 From: mattijs Date: Wed, 8 Jun 2011 15:22:05 +0100 Subject: [PATCH 1/6] ENH: pointHitSort: define < operator for sorting --- .../meshes/primitiveShapes/objectHit/pointHitSort.H | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); } }; From 3a5f546aeb4bdd629e666dbe966e7cda3438e99b Mon Sep 17 00:00:00 2001 From: mattijs Date: Wed, 8 Jun 2011 15:37:11 +0100 Subject: [PATCH 2/6] COMP: Applications/test: clean build --- applications/test/dataEntry/Make/options | 3 ++- applications/test/maxMem/Make/options | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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 */ From ecdd20cf9de67ab17660507f485fed676565cd25 Mon Sep 17 00:00:00 2001 From: mattijs Date: Wed, 8 Jun 2011 16:06:32 +0100 Subject: [PATCH 3/6] ENH: cylinder/Allrun: keep backup separate --- tutorials/basic/potentialFoam/cylinder/Allrun | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/tutorials/basic/potentialFoam/cylinder/Allrun b/tutorials/basic/potentialFoam/cylinder/Allrun index bb35ba990c..b9695da975 100755 --- a/tutorials/basic/potentialFoam/cylinder/Allrun +++ b/tutorials/basic/potentialFoam/cylinder/Allrun @@ -12,24 +12,18 @@ application=`getApplication` MAIN_CONTROL_DICT=`foamEtcFile controlDict` if [ -f "$MAIN_CONTROL_DICT" ] then - echo "Modifying ${MAIN_CONTROL_DICT}" - if [ -e ${MAIN_CONTROL_DICT}.org ] - then - echo "File ${MAIN_CONTROL_DICT}.org already exists" - echo "Did Allrun fail in some way and then run again?" - exit 1 - fi + echo "Modifying ${MAIN_CONTROL_DICT} to enable allowSystemOperations" # Clean up on termination and on Ctrl-C - trap 'mv ${MAIN_CONTROL_DICT}.org ${MAIN_CONTROL_DICT} 2>/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 From df1edc08ac2563052c308080e98f9653cc0acbfc Mon Sep 17 00:00:00 2001 From: mattijs Date: Wed, 8 Jun 2011 16:11:10 +0100 Subject: [PATCH 4/6] BUG: foamRunTutorials: reverted to non-parallel running --- bin/foamRunTutorials | 49 ++++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 24 deletions(-) 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 #------------------------------------------------------------------------------ From c16ee10bcb965f413465939c215b5c72320bde92 Mon Sep 17 00:00:00 2001 From: Henry Date: Wed, 8 Jun 2011 16:26:43 +0100 Subject: [PATCH 5/6] mixtureThermos: Set name of Yt so that it doesn't displace Y[0] from the database --- .../multiComponentSolidMixture/multiComponentSolidMixture.C | 2 +- .../mixtures/multiComponentMixture/multiComponentMixture.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 Date: Wed, 8 Jun 2011 16:28:18 +0100 Subject: [PATCH 6/6] tutorials: Updated run and clean scripts and corresponding 0 directories --- .../les/oppositeBurningPanels/Allclean | 3 +- .../fireFoam/les/oppositeBurningPanels/Allrun | 3 + .../compressible/rhoCentralFoam/Allclean | 1 - tutorials/compressible/rhoCentralFoam/Allrun | 1 - .../simpleFoam/motorBike/system/controlDict | 5 +- .../cylinder/0.org/0/H2O | 36 - .../cylinder/0.org/0/N2 | 36 - .../cylinder/0.org/0/O2 | 36 - .../reactingParcelFilmFoam/cylinder/0.org/0/T | 36 - .../reactingParcelFilmFoam/cylinder/0.org/0/U | 37 - .../reactingParcelFilmFoam/cylinder/0.org/0/p | 36 - .../cylinder/0.org/0/p_rgh | 34 - .../cylinder/0.org/0/wallFilmRegion/Tf | 41 - .../cylinder/0.org/0/wallFilmRegion/Uf | 43 - .../cylinder/0.org/0/wallFilmRegion/deltaf | 41 - .../reactingParcelFilmFoam/cylinder/0/0/H2O | 36 - .../reactingParcelFilmFoam/cylinder/0/0/N2 | 36 - .../reactingParcelFilmFoam/cylinder/0/0/O2 | 36 - .../reactingParcelFilmFoam/cylinder/0/0/T | 36 - .../reactingParcelFilmFoam/cylinder/0/0/U | 37 - .../reactingParcelFilmFoam/cylinder/0/0/p | 36 - .../reactingParcelFilmFoam/cylinder/0/0/p_rgh | 34 - .../cylinder/0/0/wallFilmRegion/Tf | 41 - .../cylinder/0/0/wallFilmRegion/Uf | 43 - .../cylinder/0/0/wallFilmRegion/deltaf | 41 - .../reactingParcelFilmFoam/cylinder/0/H2O | 36 - .../reactingParcelFilmFoam/cylinder/0/N2 | 36 - .../reactingParcelFilmFoam/cylinder/0/O2 | 36 - .../reactingParcelFilmFoam/cylinder/0/T | 36 - .../reactingParcelFilmFoam/cylinder/0/U | 37 - .../reactingParcelFilmFoam/cylinder/0/p | 36 - .../reactingParcelFilmFoam/cylinder/0/p_rgh | 34 - .../cylinder/0/wallFilmRegion/Tf | 46 - .../cylinder/0/wallFilmRegion/Uf | 48 - .../cylinder/0/wallFilmRegion/deltaf | 46 - .../reactingParcelFilmFoam/cylinder/Allclean | 6 +- .../cylinder/Allrun.pre | 1 + .../cylinder/constant/polyMesh/boundary | 1125 ++++++++++++++++- .../reactingParcelFilmFoam/hotBoxes/0/H2O | 35 - .../reactingParcelFilmFoam/hotBoxes/0/N2 | 35 - .../reactingParcelFilmFoam/hotBoxes/0/O2 | 35 - .../reactingParcelFilmFoam/hotBoxes/0/T | 41 - .../reactingParcelFilmFoam/hotBoxes/0/U | 42 - .../reactingParcelFilmFoam/hotBoxes/0/alphat | 43 - .../reactingParcelFilmFoam/hotBoxes/0/epsilon | 37 - .../reactingParcelFilmFoam/hotBoxes/0/htcConv | 38 - .../reactingParcelFilmFoam/hotBoxes/0/k | 37 - .../reactingParcelFilmFoam/hotBoxes/0/mut | 39 - .../reactingParcelFilmFoam/hotBoxes/0/p | 37 - .../reactingParcelFilmFoam/hotBoxes/0/p_rgh | 37 - .../hotBoxes/0/wallFilmRegion/Tf | 51 - .../hotBoxes/0/wallFilmRegion/Uf | 50 - .../hotBoxes/0/wallFilmRegion/deltaf | 49 - .../reactingParcelFilmFoam/hotBoxes/Allclean | 3 +- .../hotBoxes/Allrun.pre | 2 + .../reactingParcelFilmFoam/rivuletPanel/0/H2O | 44 - .../reactingParcelFilmFoam/rivuletPanel/0/N2 | 44 - .../reactingParcelFilmFoam/rivuletPanel/0/O2 | 44 - .../reactingParcelFilmFoam/rivuletPanel/0/T | 46 - .../reactingParcelFilmFoam/rivuletPanel/0/U | 47 - .../reactingParcelFilmFoam/rivuletPanel/0/p | 46 - .../rivuletPanel/0/p_rgh | 42 - .../rivuletPanel/0/wallFilmRegion/Tf | 52 - .../rivuletPanel/0/wallFilmRegion/Uf | 54 - .../rivuletPanel/0/wallFilmRegion/deltaf | 52 - .../rivuletPanel/Allclean | 6 +- .../rivuletPanel/Allrun.pre | 2 + .../reactingParcelFilmFoam/splashPanel/0/H2O | 36 - .../reactingParcelFilmFoam/splashPanel/0/N2 | 36 - .../reactingParcelFilmFoam/splashPanel/0/O2 | 36 - .../reactingParcelFilmFoam/splashPanel/0/T | 36 - .../reactingParcelFilmFoam/splashPanel/0/U | 37 - .../reactingParcelFilmFoam/splashPanel/0/p | 36 - .../splashPanel/0/p_rgh | 34 - .../splashPanel/0/wallFilmRegion/Tf | 56 - .../splashPanel/0/wallFilmRegion/Uf | 61 - .../splashPanel/0/wallFilmRegion/deltaf | 56 - .../splashPanel/Allclean | 6 +- .../splashPanel/Allrun.pre | 2 + 79 files changed, 1142 insertions(+), 2668 deletions(-) delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/H2O delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/N2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/O2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/T delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/U delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/p_rgh delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Tf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/Uf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0.org/0/wallFilmRegion/deltaf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/H2O delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/N2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/O2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/T delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/U delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/p_rgh delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Tf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/Uf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/0/wallFilmRegion/deltaf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/H2O delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/N2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/O2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/T delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/U delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/p_rgh delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Tf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/Uf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/cylinder/0/wallFilmRegion/deltaf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/H2O delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/N2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/O2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/T delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/U delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/alphat delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/epsilon delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/htcConv delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/k delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/mut delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/p_rgh delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Tf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/Uf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/0/wallFilmRegion/deltaf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/H2O delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/N2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/O2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/T delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/U delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/p_rgh delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Tf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/Uf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/0/wallFilmRegion/deltaf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/H2O delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/N2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/O2 delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/T delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/U delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/p_rgh delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Tf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/Uf delete mode 100644 tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/0/wallFilmRegion/deltaf 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 0f322174b9..340412afcd 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 2855a5921c..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 | -| \\ / 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 0ee1a75ed4..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 | -| \\ / 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 32de0fd1be..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 | -| \\ / 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 4346075470..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 | -| \\ / 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 97d1b366c8..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 | -| \\ / 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 c394467661..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 | -| \\ / 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 97d14b546f..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 | -| \\ / 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 f611a29d82..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 | -| \\ / 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 02d027e07b..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 | -| \\ / 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 ba68ff9fce..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 | -| \\ / 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 2855a5921c..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 | -| \\ / 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 0ee1a75ed4..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 | -| \\ / 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 32de0fd1be..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 | -| \\ / 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 4346075470..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 | -| \\ / 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 97d1b366c8..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 | -| \\ / 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 c394467661..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 | -| \\ / 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 97d14b546f..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 | -| \\ / 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 f611a29d82..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 | -| \\ / 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 02d027e07b..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 | -| \\ / 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 ba68ff9fce..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 | -| \\ / 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 2855a5921c..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 | -| \\ / 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 0ee1a75ed4..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 | -| \\ / 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 32de0fd1be..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 | -| \\ / 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 4346075470..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 | -| \\ / 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 97d1b366c8..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 | -| \\ / 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 c394467661..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 | -| \\ / 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 97d14b546f..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 | -| \\ / 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 cba4feba84..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 | -| \\ / 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 b182139af3..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 | -| \\ / 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 d8d105b9db..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 | -| \\ / 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 c12de2e1aa..1d1489ab84 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 a3ca43301a..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 | -| \\ / 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 05d1788e81..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 | -| \\ / 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 80b53789c0..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 | -| \\ / 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 6b770bc337..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 | -| \\ / 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 25866e3108..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 | -| \\ / 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 ab5c367579..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 | -| \\ / 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 71956f4403..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 | -| \\ / 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 2fed6f6d3d..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 | -| \\ / 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 c8c0b6b4b8..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 | -| \\ / 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 ed0c0f3dca..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 | -| \\ / 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 370b463987..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 | -| \\ / 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 0fbc92434b..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 | -| \\ / 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 816bd6f974..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 | -| \\ / 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 16aece873e..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 | -| \\ / 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 a548d60f39..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 | -| \\ / 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 15fdbe3504..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 | -| \\ / 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 8f16e4cb36..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 | -| \\ / 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 cb98d31390..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 | -| \\ / 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 0f1cbf3ec7..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 | -| \\ / 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 b8a2f299b3..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 | -| \\ / 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 3e6a57733a..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 | -| \\ / 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 c69ca93347..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 | -| \\ / 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 46cfa8398f..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 | -| \\ / 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 0fd3ad917c..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 | -| \\ / 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 df370c4e59..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 | -| \\ / 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 2213ab525c..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 | -| \\ / 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 9b57086460..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 | -| \\ / 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 fccb879133..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 | -| \\ / 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 894e4a0db3..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 | -| \\ / 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 efdbbc30df..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 | -| \\ / 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 12a77f8c68..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 | -| \\ / 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 fea98e92ba..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 | -| \\ / 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 17ffea52be..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 | -| \\ / 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 0e765504c1..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 | -| \\ / 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 735a72aeec..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 | -| \\ / 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