From 968312921cbd2940ed5688005f4db00cfb6d7b17 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B6ren=20Peters?= <soe.peters@tu-braunschweig.de>
Date: Wed, 21 Jun 2023 08:06:25 +0000
Subject: [PATCH] [GPU] Fix typo, in Probe.cu we used "part" instead of "Part",
 which results in failing regression tests.

---
 .../VirtualFluids_GPU/PreCollisionInteractor/Probes/Probe.cu  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gpu/VirtualFluids_GPU/PreCollisionInteractor/Probes/Probe.cu b/src/gpu/VirtualFluids_GPU/PreCollisionInteractor/Probes/Probe.cu
index 42e45a5bb..2be8743bb 100644
--- a/src/gpu/VirtualFluids_GPU/PreCollisionInteractor/Probes/Probe.cu
+++ b/src/gpu/VirtualFluids_GPU/PreCollisionInteractor/Probes/Probe.cu
@@ -389,7 +389,7 @@ std::string Probe::makeGridFileName(int level, int id, int t, uint part)
 {
     return this->probeName + "_bin" + nameComponent<int>("lev", level)
                                     + nameComponent<int>("ID", id)
-                                    + nameComponent<int>("part", part)
+                                    + nameComponent<int>("Part", part)
                                     + nameComponent<int>("t", t) + ".vtk";
 }
 
@@ -597,4 +597,4 @@ std::vector<std::string> Probe::getVarNames()
         }
     }
     return varNames;
-}
\ No newline at end of file
+}
-- 
GitLab