From 84bc1cc8a822b7eb52fee96e289904bfa909824d Mon Sep 17 00:00:00 2001
From: Mark Olesen <Mark.Olesen@esi-group.com>
Date: Fri, 28 Jun 2019 10:30:58 +0200
Subject: [PATCH] TUT: use simpleGrading vs simplegrading

- add PDRblockMeshDict example for cavity
---
 .../cavity/cavity/system/PDRblockMeshDict     | 61 +++++++++++++++++++
 .../laminar/sphereDrop/system/blockMeshDict   |  6 +-
 2 files changed, 64 insertions(+), 3 deletions(-)
 create mode 100644 tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict

diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict
new file mode 100644
index 00000000000..2cd278f55ab
--- /dev/null
+++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/PDRblockMeshDict
@@ -0,0 +1,61 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  v1906                                 |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    object      PDRblockMeshDict;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+scale   0.1;
+
+x
+{
+    points  (0 1);
+    nCells  (20);
+    ratios  (1);
+}
+
+y
+{
+    points  (0 1);
+    nCells  (20);
+    ratios  (1);
+}
+
+z
+{
+    points  (0 0.1);
+    nCells  (1);
+    ratios  (1);
+}
+
+
+boundary
+(
+    movingWall
+    {
+        type  wall;
+        faces (3);
+    }
+    fixedWalls
+    {
+        type  wall;
+        faces (0 1 2);
+    }
+    frontAndBack
+    {
+        type  empty;
+        faces (4 5);
+    }
+);
+
+
+// ************************************************************************* //
diff --git a/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict b/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict
index 647f5446d64..5d898010b5e 100644
--- a/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict
+++ b/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict
@@ -165,11 +165,11 @@ invBlockGrading #calc "1.0/$blockGrading";
 
 blocks
 (
-    hex (16 17 18 19 12 13 14 15) farField (25 100 1) simplegrading (1 1 1)
+    hex (16 17 18 19 12 13 14 15) farField (25 100 1) simpleGrading (1 1 1)
 
-    hex (3 0 1 4 2 0 1 5) bottomBlock (10 50 1) simplegrading ($edgeNumber 1 1)
+    hex (3 0 1 4 2 0 1 5) bottomBlock (10 50 1) simpleGrading ($edgeNumber 1 1)
 
-    hex (7 8 11 10 6 8 11 9) topBlock (10 35 1) simplegrading ($edgeNumber 1 1)
+    hex (7 8 11 10 6 8 11 9) topBlock (10 35 1) simpleGrading ($edgeNumber 1 1)
 
     hex (25 23 20 22 24 23 20 21)
     centralBlock (10 20 1)
-- 
GitLab