diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle/constant/LESProperties b/tutorials/multiphase/cavitatingFoam/les/throttle/constant/LESProperties
index ef3e3809daa57c3d9ce9107b7b3e8ae57bf8b223..b16fea4ab2fb0e04dcbe2d821bf1b77c1f5eb3a5 100644
--- a/tutorials/multiphase/cavitatingFoam/les/throttle/constant/LESProperties
+++ b/tutorials/multiphase/cavitatingFoam/les/throttle/constant/LESProperties
@@ -1,7 +1,7 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  dev                                   |
+|  \\    /   O peration     | Version:  1.5                                   |
 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
@@ -15,7 +15,9 @@ FoamFile
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
-LESModel        devOneEqEddy;
+LESModel        oneEqEddy;
+
+turbulence      on;
 
 delta           smooth;
 
diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle/system/fvSolution b/tutorials/multiphase/cavitatingFoam/les/throttle/system/fvSolution
index 7aa0a3d54c1a84143128c20184e2362f5851e20a..b0f2c1c77191ffe367c8e7e163f0a0e3e9e802e6 100644
--- a/tutorials/multiphase/cavitatingFoam/les/throttle/system/fvSolution
+++ b/tutorials/multiphase/cavitatingFoam/les/throttle/system/fvSolution
@@ -50,6 +50,20 @@ solvers
     }
 
     p
+    {
+        solver          GAMG;
+        tolerance       0;
+        relTol          0.1;
+        smoother        GaussSeidel;
+        nPreSweeps      0;
+        nPostSweeps     2;
+        cacheAgglomeration true;
+        nCellsInCoarsestLevel 10;
+        agglomerator    faceAreaPair;
+        mergeLevels     1;
+    }
+
+    pFinal
     {
         solver          GAMG;
         tolerance       1e-08;
diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/LESProperties b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/LESProperties
index ef3e3809daa57c3d9ce9107b7b3e8ae57bf8b223..b16fea4ab2fb0e04dcbe2d821bf1b77c1f5eb3a5 100644
--- a/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/LESProperties
+++ b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/LESProperties
@@ -1,7 +1,7 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  dev                                   |
+|  \\    /   O peration     | Version:  1.5                                   |
 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
@@ -15,7 +15,9 @@ FoamFile
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
-LESModel        devOneEqEddy;
+LESModel        oneEqEddy;
+
+turbulence      on;
 
 delta           smooth;
 
diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/turbulenceProperties b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/turbulenceProperties
new file mode 100644
index 0000000000000000000000000000000000000000..9ddab1bfcd2e922809b338b9bf02770bf770a024
--- /dev/null
+++ b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/turbulenceProperties
@@ -0,0 +1,21 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      binary;
+    class       dictionary;
+    location    "constant";
+    object      turbulenceProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+simulationType  LESModel;
+
+
+// ************************************************************************* //
diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle3D/system/fvSolution b/tutorials/multiphase/cavitatingFoam/les/throttle3D/system/fvSolution
index 7aa0a3d54c1a84143128c20184e2362f5851e20a..b0f2c1c77191ffe367c8e7e163f0a0e3e9e802e6 100644
--- a/tutorials/multiphase/cavitatingFoam/les/throttle3D/system/fvSolution
+++ b/tutorials/multiphase/cavitatingFoam/les/throttle3D/system/fvSolution
@@ -50,6 +50,20 @@ solvers
     }
 
     p
+    {
+        solver          GAMG;
+        tolerance       0;
+        relTol          0.1;
+        smoother        GaussSeidel;
+        nPreSweeps      0;
+        nPostSweeps     2;
+        cacheAgglomeration true;
+        nCellsInCoarsestLevel 10;
+        agglomerator    faceAreaPair;
+        mergeLevels     1;
+    }
+
+    pFinal
     {
         solver          GAMG;
         tolerance       1e-08;
diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/0/k b/tutorials/multiphase/cavitatingFoam/ras/throttle/0/k
index 835c3a9992879be78d1f2ea259527535159f405a..732cdd4d128bc45a4ba908f6ffafd53c5da08971 100644
--- a/tutorials/multiphase/cavitatingFoam/ras/throttle/0/k
+++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/0/k
@@ -1,8 +1,8 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  1.5                                   |
-|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
 FoamFile
@@ -10,13 +10,14 @@ FoamFile
     version     2.0;
     format      ascii;
     class       volScalarField;
+    location    "0";
     object      k;
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
-dimensions      [0 2 -2 0 0];
+dimensions      [0 2 -2 0 0 0 0];
 
-internalField   uniform 10.0;
+internalField   uniform 10;
 
 boundaryField
 {
@@ -26,21 +27,20 @@ boundaryField
         intensity       0.05;
         value           uniform 0.05;
     }
-
     outlet
     {
         type            zeroGradient;
     }
-
     walls
     {
-        type            zeroGradient;
+        type            kQRWallFunction;
+        value           uniform 10;
     }
-
     frontBack
     {
         type            empty;
     }
 }
 
+
 // ************************************************************************* //
diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/0/nut b/tutorials/multiphase/cavitatingFoam/ras/throttle/0/nut
new file mode 100644
index 0000000000000000000000000000000000000000..933ce47778c7422cd0fbf38d27abdea527a5e350
--- /dev/null
+++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/0/nut
@@ -0,0 +1,46 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       volScalarField;
+    location    "0";
+    object      nut;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 2 -1 0 0 0 0];
+
+internalField   uniform 0;
+
+boundaryField
+{
+    inlet
+    {
+        type            calculated;
+        value           uniform 0;
+    }
+    outlet
+    {
+        type            calculated;
+        value           uniform 0;
+    }
+    walls
+    {
+        type            nutWallFunction;
+        value           uniform 0;
+    }
+    frontBack
+    {
+        type            empty;
+    }
+}
+
+
+// ************************************************************************* //
diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/0/omega b/tutorials/multiphase/cavitatingFoam/ras/throttle/0/omega
index 330a29d8c18b0445f18a41e3384372f8d48970b6..17b398f9c3ead11f88ad8b7f411e599bd4ac9f99 100644
--- a/tutorials/multiphase/cavitatingFoam/ras/throttle/0/omega
+++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/0/omega
@@ -1,8 +1,8 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  1.5                                   |
-|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
 FoamFile
@@ -10,11 +10,12 @@ FoamFile
     version     2.0;
     format      ascii;
     class       volScalarField;
+    location    "0";
     object      omega;
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
-dimensions      [0 0 -1 0 0];
+dimensions      [0 0 -1 0 0 0 0];
 
 internalField   uniform 77200;
 
@@ -23,25 +24,24 @@ boundaryField
     inlet
     {
         type            turbulentMixingLengthFrequencyInlet;
-        mixingLength    0.5e-03;
+        mixingLength    0.0005;
         k               k;
         value           uniform 77200;
     }
-
     outlet
     {
         type            zeroGradient;
     }
-
     walls
     {
-        type            zeroGradient;
+        type            omegaWallFunction;
+        value           uniform 77200;
     }
-
     frontBack
     {
         type            empty;
     }
 }
 
+
 // ************************************************************************* //
diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/system/fvSolution b/tutorials/multiphase/cavitatingFoam/ras/throttle/system/fvSolution
index 4f413e7ef14f8370ee05b0ecc07f37b9ad0a8dc7..f139c3dde474429bb5378044aa3de7471a7f6385 100644
--- a/tutorials/multiphase/cavitatingFoam/ras/throttle/system/fvSolution
+++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/system/fvSolution
@@ -50,6 +50,20 @@ solvers
     }
 
     p
+    {
+        solver          GAMG;
+        tolerance       0;
+        relTol          0.1;
+        smoother        GaussSeidel;
+        nPreSweeps      0;
+        nPostSweeps     2;
+        cacheAgglomeration true;
+        nCellsInCoarsestLevel 10;
+        agglomerator    faceAreaPair;
+        mergeLevels     1;
+    }
+
+    pFinal
     {
         solver          GAMG;
         tolerance       1e-08;
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/gamma b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/alpah1.org
similarity index 100%
rename from tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/gamma
rename to tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/alpah1.org
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/gamma.org b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/alpha1
similarity index 100%
rename from tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/gamma.org
rename to tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0-orig/alpha1
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/U b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/U
index e791ef363f6ab10c6e1062b8c37499062dbf8b92..6d3ce2531bf967c9224c82b1f55f1c483848fa0b 100644
--- a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/U
+++ b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/U
@@ -1,8 +1,8 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  1.5                                   |
-|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
 FoamFile
@@ -10,6 +10,7 @@ FoamFile
     version     2.0;
     format      ascii;
     class       volVectorField;
+    location    "0";
     object      U;
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@@ -23,7 +24,6 @@ boundaryField
     atmosphere
     {
         type            pressureInletOutletVelocity;
-        phi             phi;
         value           uniform (0 0 0);
     }
     walls
@@ -33,4 +33,5 @@ boundaryField
     }
 }
 
+
 // ************************************************************************* //
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/gamma b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/alpha1
similarity index 99%
rename from tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/gamma
rename to tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/alpha1
index 7602a0953b91a29e678b54f16b84d237ae5dbae6..678ced5d4e7873a05862dcfd9538f2e2e680559f 100644
--- a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/gamma
+++ b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/alpha1
@@ -1,8 +1,8 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  1.5                                   |
-|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
 FoamFile
@@ -10,6 +10,7 @@ FoamFile
     version     2.0;
     format      ascii;
     class       volScalarField;
+    location    "0";
     object      gamma;
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@@ -32804,4 +32805,5 @@ boundaryField
     }
 }
 
+
 // ************************************************************************* //
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/gamma.org b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/alpha1.org
similarity index 100%
rename from tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/gamma.org
rename to tutorials/multiphase/interDyMFoam/damBreakWithObstacle/0/alpha1.org
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/constant/dynamicMeshDict b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/constant/dynamicMeshDict
index 3ff397dfee0b51425587d68904a8e3d7014b0c51..0560899a729106f76c45811f4429b8014a711d30 100644
--- a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/constant/dynamicMeshDict
+++ b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/constant/dynamicMeshDict
@@ -20,14 +20,20 @@ dynamicFvMesh   dynamicRefineFvMesh;
 dynamicRefineFvMeshCoeffs
 {
     refineInterval  1;
-    field           gamma;
+    field           alpha1;
     lowerRefineLevel 0.001;
     upperRefineLevel 0.999;
     unrefineLevel   10;
     nBufferLayers   1;
     maxRefinement   2;
     maxCells        200000;
-    correctFluxes   ( ( phi U ) );
+    correctFluxes
+    (
+        (
+            phi
+            U
+        )
+    );
     dumpLevel       true;
 }
 
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/constant/turbulenceProperties b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/constant/turbulenceProperties
new file mode 100644
index 0000000000000000000000000000000000000000..886d34bdef135c39216d342240a96bf0530bdd62
--- /dev/null
+++ b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/constant/turbulenceProperties
@@ -0,0 +1,21 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  1.5                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      turbulenceProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+simulationType  laminar;
+
+
+// ************************************************************************* //
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSchemes b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSchemes
index f08b9b1ac23f71bbecb6cc581a8a36b416183bca..ffc5cd12c4ff04a05bbdc7079f884e24bb0c29a0 100644
--- a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSchemes
+++ b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSchemes
@@ -30,8 +30,8 @@ gradSchemes
 divSchemes
 {
     div(rho*phi,U)  Gauss upwind;
-    div(phi,gamma)  Gauss vanLeer;
-    div(phirb,gamma) Gauss interfaceCompression;
+    div(phi,alpha)  Gauss vanLeer;
+    div(phirb,alpha) Gauss interfaceCompression;
 }
 
 laplacianSchemes
@@ -54,7 +54,7 @@ fluxRequired
     default         no;
     pd              ;
     pcorr           ;
-    gamma           ;
+    alpha           ;
 }
 
 
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSolution b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSolution
index e33d8a03f003766791666d7d97f531906504a333..36d56bb947117523daaeaf8e09654f575b3981db 100644
--- a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSolution
+++ b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/fvSolution
@@ -118,9 +118,9 @@ PISO
     momentumPredictor no;
     nCorrectors     3;
     nNonOrthogonalCorrectors 0;
-    nGammaCorr      1;
-    nGammaSubCycles 3;
-    cGamma          1;
+    nAlphaCorr      1;
+    nAlphaSubCycles 3;
+    cAlpha          1;
     pdRefCell       0;
     pdRefValue      0;
     pRefProbe
diff --git a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/setFieldsDict b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/setFieldsDict
index 892a12e4429a2d4b2f51f4a661b7e12c3560d2a7..21ee9f3f5803fb2056e4f7e2dcb4343ab7fc1f7d 100644
--- a/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/setFieldsDict
+++ b/tutorials/multiphase/interDyMFoam/damBreakWithObstacle/system/setFieldsDict
@@ -15,9 +15,23 @@ FoamFile
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
-defaultFieldValues ( volScalarFieldValue gamma 0 volVectorFieldValue U ( 0 0 0 ) );
+defaultFieldValues
+(
+    volScalarFieldValue alpha1 0
+    volVectorFieldValue U ( 0 0 0 )
+);
 
-regions         ( boxToCell { box ( 0 0 0 ) ( 0.6 0.1875 0.75 ) ; fieldValues ( volScalarFieldValue gamma 1 ) ; } );
+regions
+(
+    boxToCell
+    {
+        box ( 0 0 0 ) ( 0.6 0.1875 0.75 );
+        fieldValues 
+        (
+            volScalarFieldValue gamma 1
+        );
+    }
+ );
 
 
 // ************************************************************************* //
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/0/U b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/U
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/0/U
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/U
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/0/alphaair b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphaair
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/0/alphaair
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphaair
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/0/alphamercury b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphamercury
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/0/alphamercury
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphamercury
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/0/alphaoil b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphaoil
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/0/alphaoil
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphaoil
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/0/alphas b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphas
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/0/alphas
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphas
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/0/alphawater b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphawater
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/0/alphawater
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/alphawater
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/0/pd b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/pd
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/0/pd
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/0/pd
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/constant/environmentalProperties.gz b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/environmentalProperties.gz
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/constant/environmentalProperties.gz
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/environmentalProperties.gz
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/constant/motionProperties.gz b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/motionProperties.gz
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/constant/motionProperties.gz
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/motionProperties.gz
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/constant/polyMesh/blockMeshDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/polyMesh/blockMeshDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/constant/polyMesh/blockMeshDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/polyMesh/blockMeshDict
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/constant/polyMesh/boundary b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/polyMesh/boundary
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/constant/polyMesh/boundary
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/polyMesh/boundary
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/constant/transportProperties b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/transportProperties
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/constant/transportProperties
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/constant/transportProperties
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/system/controlDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/controlDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/system/controlDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/controlDict
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/system/decomposeParDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/decomposeParDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/system/decomposeParDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/decomposeParDict
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/system/fvSchemes b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/fvSchemes
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/system/fvSchemes
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/fvSchemes
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/system/fvSolution b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/fvSolution
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/system/fvSolution
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/fvSolution
diff --git a/tutorials/multiphaseInterFoam/damBreak4phase/system/setFieldsDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/setFieldsDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phase/system/setFieldsDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phase/system/setFieldsDict
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/0/U b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/U
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/0/U
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/U
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphaair b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphaair
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphaair
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphaair
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphamercury b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphamercury
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphamercury
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphamercury
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphaoil b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphaoil
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphaoil
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphaoil
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphas b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphas
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphas
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphas
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphawater b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphawater
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/0/alphawater
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/alphawater
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/0/pd b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/pd
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/0/pd
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/0/pd
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/environmentalProperties.gz b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/environmentalProperties.gz
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/environmentalProperties.gz
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/environmentalProperties.gz
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/motionProperties.gz b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/motionProperties.gz
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/motionProperties.gz
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/motionProperties.gz
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/blockMeshDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/blockMeshDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/blockMeshDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/blockMeshDict
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/boundary b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/boundary
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/boundary
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/polyMesh/boundary
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/transportProperties b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/transportProperties
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/constant/transportProperties
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/constant/transportProperties
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/system/controlDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/controlDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/system/controlDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/controlDict
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/system/decomposeParDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/decomposeParDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/system/decomposeParDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/decomposeParDict
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/system/fvSchemes b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/fvSchemes
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/system/fvSchemes
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/fvSchemes
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution.par b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution.par
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution.par
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/fvSolution.par
diff --git a/tutorials/multiphaseInterFoam/damBreak4phaseFine/system/setFieldsDict b/tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/setFieldsDict
similarity index 100%
rename from tutorials/multiphaseInterFoam/damBreak4phaseFine/system/setFieldsDict
rename to tutorials/multiphase/multiphaseInterFoam/damBreak4phaseFine/system/setFieldsDict