diff --git a/src/finiteVolume/fvMesh/fvMeshStitchers/fvMeshStitcher/conformedFvPatchField.C b/src/finiteVolume/fvMesh/fvMeshStitchers/fvMeshStitcher/conformedFvPatchField.C
index 6b2f6aee69..1dc6d1aa7d 100644
--- a/src/finiteVolume/fvMesh/fvMeshStitchers/fvMeshStitcher/conformedFvPatchField.C
+++ b/src/finiteVolume/fvMesh/fvMeshStitchers/fvMeshStitcher/conformedFvPatchField.C
@@ -152,6 +152,9 @@ void Foam::conformedFvPatchField<Type>::conform
 {
     const DimensionedField<Type, volMesh>& iF = bF[0].internalField();
 
+    if (iF.name().find("cellDisplacement") == 0) return;
+    if (iF.name().find("cellMotion") == 0) return;
+
     const fvBoundaryMesh& fvbm = iF.mesh().boundary();
 
     const labelList origPatchIndices =
@@ -311,6 +314,9 @@ void Foam::conformedFvPatchField<Type>::unconform
 {
     const DimensionedField<Type, volMesh>& iF = bF[0].internalField();
 
+    if (iF.name().find("cellDisplacement") == 0) return;
+    if (iF.name().find("cellMotion") == 0) return;
+
     const fvBoundaryMesh& fvbm = iF.mesh().boundary();
 
     const labelList origPatchIndices =
