diff --git a/apps/gpu/LBM/MusselOyster/MusselOyster.cpp b/apps/gpu/LBM/MusselOyster/MusselOyster.cpp
index e208281d957edf9d50c76391e68135dedbb0bf6b..26a4e3beb16dcf2307e22710ecee2011ccbf7918 100644
--- a/apps/gpu/LBM/MusselOyster/MusselOyster.cpp
+++ b/apps/gpu/LBM/MusselOyster/MusselOyster.cpp
@@ -67,8 +67,6 @@
 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
-
-
 std::string path("E:/temp/MusselOyster");
 std::string gridPath("E:/temp/GridMussel/");
 std::string simulationName("MusselOyster");
@@ -114,10 +112,11 @@ void multipleLevel(const std::string& configPath)
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     std::string bivalveType = "MUSSEL"; // "MUSSEL" "OYSTER"
+    gridPath                = gridPath + "/" + bivalveType + "/";
 
-    real dx = 0.5;
+    real dx = (real)0.5;
     real vx = (real)0.005;
-    real Re = 50;
+    real Re = (real)50.0;
 
     para->setVelocity(vx);
     para->setViscosity((vx * dx) / Re);
@@ -238,7 +237,7 @@ void multipleLevel(const std::string& configPath)
 
 
 
-       return;
+       //return;
     }
 
         ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////