From b2bb46c39dc05e3bd9842ab6acfb2d107e0a9ffc Mon Sep 17 00:00:00 2001
From: sergio <sergio>
Date: Tue, 12 Jun 2018 18:26:17 -0700
Subject: [PATCH] ENH: Tutorial modifications for Medium Test - 12.06.2018

---
 .../flamePropagationWithObstacles/fuels/propane.dat        | 4 ++--
 .../laminar/climbingRod/system/fvSchemes                   | 2 +-
 .../depthCharge2D/constant/thermophysicalProperties        | 4 ++--
 .../depthCharge2D/constant/thermophysicalProperties.water  | 6 +++---
 .../multiphase/driftFluxFoam/RAS/dahl/system/fvSolution    | 2 +-
 .../interFoam/RAS/motorBike/system/controlDict_nextWrite   | 7 +------
 .../reactingTwoPhaseEulerFoam/RAS/LBend/system/controlDict | 2 +-
 7 files changed, 11 insertions(+), 16 deletions(-)

diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/fuels/propane.dat b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/fuels/propane.dat
index b5fb431b633..94e28df5366 100644
--- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/fuels/propane.dat
+++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/fuels/propane.dat
@@ -1,7 +1,7 @@
 SCOPECoeffs
 {
-    lowerFlamabilityLimit      0.522;
-    upperFlamabilityLimit      2.362;
+    lowerFlammabilityLimit      0.522;
+    upperFlammabilityLimit      2.362;
 
     lowerSuPolynomial
     {
diff --git a/tutorials/multiphase/compressibleInterFoam/laminar/climbingRod/system/fvSchemes b/tutorials/multiphase/compressibleInterFoam/laminar/climbingRod/system/fvSchemes
index 5162d1947d2..8935c3fbe55 100644
--- a/tutorials/multiphase/compressibleInterFoam/laminar/climbingRod/system/fvSchemes
+++ b/tutorials/multiphase/compressibleInterFoam/laminar/climbingRod/system/fvSchemes
@@ -36,7 +36,7 @@ divSchemes
     div(phi,p)      Gauss upwind;
     div(rhoPhi,K)   Gauss upwind;
 
-    div(alphaRhoPhi.liquid,sigma.liquid) Gauss linearUpwind grad(sigma);
+    div(alphaRhoPhi.liquid,sigma.liquid) Gauss upwind;
 
     div(((alpha.liquid*thermo:rho.liquid)*sigma.liquid))   Gauss linear;
     div((((alpha.liquid*thermo:rho.liquid)*nuM)*grad(U)))   Gauss linear;
diff --git a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties
index 321f631dad9..cafb60cd718 100644
--- a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties
+++ b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties
@@ -21,8 +21,8 @@ pMin        10000;
 
 sigma
 {
-    type    liquidProperties;
-    phase   water;
+    type    constant;
+    sigma   0.07;
 }
 
 // ************************************************************************* //
diff --git a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties.water b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties.water
index d3184880ded..3009bc35035 100644
--- a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties.water
+++ b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties.water
@@ -14,7 +14,7 @@ FoamFile
     object      thermophysicalProperties;
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
-
+/*
 thermoType
 {
     type            heRhoThermo;
@@ -27,9 +27,9 @@ mixture
 {
     H2O;
 }
+*/
 
 
-/*
 thermoType
 {
     type            heRhoThermo;
@@ -63,7 +63,7 @@ mixture
         Pr          2.289;
     }
 }
-*/
+
 
 
 // ************************************************************************* //
diff --git a/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/fvSolution b/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/fvSolution
index e468feb57ff..44a4ef4d514 100644
--- a/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/fvSolution
+++ b/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/fvSolution
@@ -24,7 +24,7 @@ solvers
 
         MULESCorr       yes;
         nLimiterIter    3;
-        alphaApplyPrevCorr  yes;
+        alphaApplyPrevCorr  no;
 
         solver          smoothSolver;
         smoother        symGaussSeidel;
diff --git a/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict_nextWrite b/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict_nextWrite
index 63fc4349d25..c0fa4a73716 100644
--- a/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict_nextWrite
+++ b/tutorials/multiphase/interFoam/RAS/motorBike/system/controlDict_nextWrite
@@ -15,12 +15,7 @@ FoamFile
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
-//DebugSwitches
-//{
-//    dynamicRefineFvMesh 1;
-//}
-
-application     interDyMFoam;
+application     interFoam;
 
 startFrom       latestTime;
 
diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/controlDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/controlDict
index d58c291e45f..6befae9e9a7 100644
--- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/controlDict
+++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/controlDict
@@ -23,7 +23,7 @@ startTime       0;
 
 stopAt          endTime;
 
-endTime         2;
+endTime         1.9;
 
 deltaT          1e-4;
 
-- 
GitLab