diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/Allrun.pre b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/Allrun.pre
index a3c9718bf68071a89e78f1392c3291254a6e272e..a6e2612512d76e8ff7c91ff8eae5f1ec7eedd456 100755
--- a/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/Allrun.pre
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/Allrun.pre
@@ -11,5 +11,5 @@ mv log.setSet log.wallFilmRegion.setSet
 runApplication setsToZones -noFlipMap
 mv log.setsToZones log.setsToZones.primaryRegion
 
-runApplication extrudeToRegionMesh wallFilmRegion '(wallFilmFaces)' 0.01 -overwrite
+runApplication extrudeToRegionMesh -overwrite
 
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties
index 6279e46c30f1290359cdc3aa800827ed0de53762..1f9b1416c03c428f2434299c3a24f10c5cc39997 100644
--- a/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties
@@ -18,70 +18,6 @@ FoamFile
 solution
 {
     active          false;
-
-    integrationSchemes
-    {
-        U               Euler;
-        T               Analytical;
-    }
-}
-
-constantProperties
-{
-    parcelTypeId    1;
-
-    rhoMin          1e-15;
-    TMin            200;
-    pMin            1000;
-    minParticleMass 1e-15;
-
-    rho0            1000;
-    T0              300;
-    Cp0             4187;
-
-    epsilon0        1;
-    f0              0.5;
-
-    Pr              0.7;
-    Tvap            273;
-    Tbp             373;
-    youngsModulus   0;
-    poissonsRatio   0;
-
-    constantVolume  false;
-}
-
-particleForces
-{
-    gravity         on;
-    virtualMass     off;
-    pressureGradient off;
-    paramagnetic    off;
-}
-
-subModels
-{
-    InjectionModel  none;
-
-    DragModel       none;
-
-    DispersionModel none;
-
-    PatchInteractionModel none;
-
-    CollisionModel  none;
-
-    HeatTransferModel none;
-
-    CompositionModel none;
-
-    PhaseChangeModel none;
-
-    PostProcessingModel none;
-
-    SurfaceFilmModel none;
-
-    radiation       off;
 }
 
 
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/system/extrudeToRegionMeshDict b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/system/extrudeToRegionMeshDict
new file mode 100644
index 0000000000000000000000000000000000000000..ab1cc2e2de3eb51b6fc84959b9e0ba09bc8ba61a
--- /dev/null
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/system/extrudeToRegionMeshDict
@@ -0,0 +1,38 @@
+/*--------------------------------*- C++ -*----------------------------------*\                           
+| =========                 |                                                 |                           
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |                           
+|  \\    /   O peration     | Version:  dev                                   |                           
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |                           
+|    \\/     M anipulation  |                                                 |                           
+\*---------------------------------------------------------------------------*/                           
+FoamFile                                                                                                  
+{                                                                                                         
+    version     2.0;                                                                                      
+    format      ascii;                                                                                    
+    class       dictionary;                                                                               
+    object      extrudeToRegionMeshDict;                                                                  
+}                                                                                                         
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //                           
+
+region          wallFilmRegion;        
+
+faceZones       (wallFilmFaces);
+
+adaptMesh       true;
+
+oneD            false;
+
+extrudeModel    linearNormal;       
+
+nLayers         1;
+
+expansionRatio  1;
+
+linearNormalCoeffs
+{                 
+    thickness       0.01;
+}                        
+
+
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/panel/Allrun.pre b/tutorials/lagrangian/reactingParcelFilmFoam/panel/Allrun.pre
index 74726aadb0ab8e9f580c68c97aa85df481e4a909..9a69e3b490ac8ceb86cdbe238fc29fb3c32fb52c 100755
--- a/tutorials/lagrangian/reactingParcelFilmFoam/panel/Allrun.pre
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/panel/Allrun.pre
@@ -6,7 +6,7 @@ runApplication blockMesh
 runApplication setSet -batch wallFilmRegion.setSet
 mv log.setSet log.wallFilmRegion.setSet
 
-runApplication extrudeToRegionMesh wallFilmRegion '(wallFilmFaces)' 0.01 -overwrite
+runApplication extrudeToRegionMesh -overwrite
 
 runApplication setSet -region wallFilmRegion -batch createWallFilmRegionPatches.setSet
 mv log.setSet log.createWallFilmRegionPatches.setSet
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties
index 78ac17426fc66ba437c173bd673ec13767f2c755..1f9b1416c03c428f2434299c3a24f10c5cc39997 100644
--- a/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties
@@ -2,7 +2,7 @@
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
 |  \\    /   O peration     | Version:  dev                                   |
-|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
 FoamFile
@@ -18,70 +18,6 @@ FoamFile
 solution
 {
     active          false;
-
-    integrationSchemes
-    {
-        U               Euler;
-        T               Analytical;
-    }
-}
-
-constantProperties
-{
-    parcelTypeId    1;
-
-    rhoMin          1e-15;
-    TMin            200;
-    pMin            1000;
-    minParticleMass 1e-15;
-
-    rho0            1000;
-    T0              300;
-    Cp0             4187;
-
-    youngsModulus   1e9;
-    poissonsRatio   0.35;
-
-    epsilon0        1;
-    f0              0.5;
-    Pr              0.7;
-    Tvap            273;
-    Tbp             373;
-
-    constantVolume  false;
-}
-
-particleForces
-{
-    gravity             on;
-    virtualMass         off;
-    pressureGradient    off;
-    paramagnetic        off;
-}
-
-subModels
-{
-    InjectionModel  none;
-
-    DragModel       none;
-
-    DispersionModel none;
-
-    PatchInteractionModel none;
-
-    HeatTransferModel none;
-
-    CompositionModel none;
-
-    PhaseChangeModel none;
-
-    PostProcessingModel none;
-
-    CollisionModel none;
-
-    SurfaceFilmModel none;
-
-    radiation       off;
 }
 
 
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/panel/system/extrudeToRegionMeshDict b/tutorials/lagrangian/reactingParcelFilmFoam/panel/system/extrudeToRegionMeshDict
new file mode 100644
index 0000000000000000000000000000000000000000..ab1cc2e2de3eb51b6fc84959b9e0ba09bc8ba61a
--- /dev/null
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/panel/system/extrudeToRegionMeshDict
@@ -0,0 +1,38 @@
+/*--------------------------------*- C++ -*----------------------------------*\                           
+| =========                 |                                                 |                           
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |                           
+|  \\    /   O peration     | Version:  dev                                   |                           
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |                           
+|    \\/     M anipulation  |                                                 |                           
+\*---------------------------------------------------------------------------*/                           
+FoamFile                                                                                                  
+{                                                                                                         
+    version     2.0;                                                                                      
+    format      ascii;                                                                                    
+    class       dictionary;                                                                               
+    object      extrudeToRegionMeshDict;                                                                  
+}                                                                                                         
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //                           
+
+region          wallFilmRegion;        
+
+faceZones       (wallFilmFaces);
+
+adaptMesh       true;
+
+oneD            false;
+
+extrudeModel    linearNormal;       
+
+nLayers         1;
+
+expansionRatio  1;
+
+linearNormalCoeffs
+{                 
+    thickness       0.01;
+}                        
+
+
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+