From 8b77946c679055be72a59fdd437616d6f9590ea5 Mon Sep 17 00:00:00 2001
From: Andrew Heather <>
Date: Mon, 23 Dec 2019 09:46:41 +0000
Subject: [PATCH] BUG: Patch interaction models - correct container type
 introduced by c1b07cd103

---
 .../PatchInteractionModel/LocalInteraction/LocalInteraction.C | 4 ++--
 .../StandardWallInteraction/StandardWallInteraction.C         | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C
index 2daf570d2e0..1c16bcd65f9 100644
--- a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C
+++ b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C
@@ -335,9 +335,9 @@ void Foam::LocalInteraction<CloudType>::info(Ostream& os)
 
     // retrieve any stored data
     labelListList npe0(patchData_.size());
-    labelListList mpe0(patchData_.size());
+    scalarListList mpe0(patchData_.size());
     labelListList nps0(patchData_.size());
-    labelListList mps0(patchData_.size());
+    scalarListList mps0(patchData_.size());
     
     forAll(patchData_, patchi)
     {
diff --git a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/StandardWallInteraction/StandardWallInteraction.C b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/StandardWallInteraction/StandardWallInteraction.C
index 8df1002ebbb..6e25ecd8f6c 100644
--- a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/StandardWallInteraction/StandardWallInteraction.C
+++ b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/StandardWallInteraction/StandardWallInteraction.C
@@ -249,9 +249,9 @@ void Foam::StandardWallInteraction<CloudType>::info(Ostream& os)
     PatchInteractionModel<CloudType>::info(os);
 
     labelListList npe0(nEscape_.size());
-    labelListList mpe0(nEscape_.size());
+    scalarListList mpe0(nEscape_.size());
     labelListList nps0(nEscape_.size());
-    labelListList mps0(nEscape_.size());
+    scalarListList mps0(nEscape_.size());
     
     forAll(nEscape_, patchi)
     {
-- 
GitLab