From cfb0ea43e5565c5922ee93e5ae820d917f6265c9 Mon Sep 17 00:00:00 2001
From: Anna <a.wellmann@tu-bs.de>
Date: Mon, 4 Jul 2022 06:51:21 +0000
Subject: [PATCH] Fix velocity in FlowAroundSphere

---
 apps/gpu/FlowAroundSphere/FlowAroundSphere.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/gpu/FlowAroundSphere/FlowAroundSphere.cpp b/apps/gpu/FlowAroundSphere/FlowAroundSphere.cpp
index 5c379b74f..0f0ca966e 100644
--- a/apps/gpu/FlowAroundSphere/FlowAroundSphere.cpp
+++ b/apps/gpu/FlowAroundSphere/FlowAroundSphere.cpp
@@ -156,7 +156,7 @@ int main(int argc, char *argv[])
 
         const real velocityLB = velocity * dt / dx; // LB units
 
-        const real vxLB = velocityLB / sqrt(2.0); // LB units
+        const real vxLB = velocityLB; // LB units
 
         const real viscosityLB = nx * velocityLB / Re; // LB units
 
-- 
GitLab