From 8e82e7b8e8f05a6e3422686668f63b3bb9982323 Mon Sep 17 00:00:00 2001
From: mattijs <mattijs>
Date: Mon, 1 Oct 2018 09:51:24 +0100
Subject: [PATCH] ENH: heatTransfer: allow free patch to be moved. See #1026.

---
 .../heatTransfer/0.orig/cellDisplacement      | 59 +++++++++++++++++++
 1 file changed, 59 insertions(+)
 create mode 100644 tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement

diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement
new file mode 100644
index 00000000000..cff2e40ca34
--- /dev/null
+++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement
@@ -0,0 +1,59 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  v1806                                 |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       volVectorField;
+    location    "0.1";
+    object      cellDisplacement;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 1 0 0 0 0 0];
+
+
+internalField   uniform (0 0 0);
+
+boundaryField
+{
+    free
+    {
+        patchType       overset;
+        type            cellMotion;
+        value           uniform (0 0 0);
+    }
+
+    walls
+    {
+        type            cellMotion;
+        value           uniform (0 0 0);
+    }
+    hole
+    {
+        type            cellMotion;
+        value           uniform (0 0 0);
+    }
+    frontAndBack
+    {
+        type            empty;
+    }
+    left1
+    {
+        type            cellMotion;
+        value           uniform (0 0 0);
+    }
+    right1
+    {
+        type            cellMotion;
+        value           uniform (0 0 0);
+    }
+}
+
+
+// ************************************************************************* //
-- 
GitLab