diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index e69b3794f5854cd6c9446b120eb6d64603f8d143..74df1acd7c98139314656e70b2e074adcbb0983b 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,18 +1,25 @@
 {
     "name": "virtual-fluids-environment",
-    "extensions": [
-        "mhutchie.git-graph",
-        "donjayamanne.githistory",
-        "twxs.cmake",
-        "ms-vscode.cpptools",
-        "visualstudioexptteam.vscodeintellicode",
-        "xaver.clang-format",
-        "notskm.clang-tidy",
-        "streetsidesoftware.code-spell-checker"
-    ],
+    "customizations": {
+        "vscode": {
+            "extensions": [
+                "mhutchie.git-graph",
+                "donjayamanne.githistory",
+                "twxs.cmake",
+                "ms-vscode.cpptools",
+                "visualstudioexptteam.vscodeintellicode",
+                "xaver.clang-format",
+                "notskm.clang-tidy",
+                "streetsidesoftware.code-spell-checker",
+                "llvm-vs-code-extensions.vscode-clangd",
+                "jbenden.c-cpp-flylint",
+                "ms-python.python",
+            ]
+        }
+    },
     "containerEnv": {"TZ": "${localEnv:TZ:Europe/Berlin}"},
     "runArgs": ["--gpus","all",                     // remove this line in case you have no gpus available
                 "--hostname=${localEnv:HOSTNAME}"], // HOSTNAME needs to be known by the vscode environment. It is probably necessary to add "export HOSTNAME=<hostname>" to the config file of your host machine's bash.
 
-    "image": "git.rz.tu-bs.de:4567/irmb/virtualfluids/ubuntu20_04:1.5"
+    "image": "git.rz.tu-bs.de:4567/irmb/virtualfluids/ubuntu22_04:1.0"
 }
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e12f8c5ae11456bc45fcf280a7601376805b25a9..2cf3e6a6497efc437fee5a3281fa72c75ee59eae 100755
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
 ###############################################################################
 ##                       VirtualFluids CI Pipeline                           ##
 ###############################################################################
-image: git.rz.tu-bs.de:4567/irmb/virtualfluids/ubuntu20_04:1.5
+image: git.rz.tu-bs.de:4567/irmb/virtualfluids/ubuntu22_04:1.0
 
 stages:
   - build
@@ -13,6 +13,11 @@ stages:
   - deploy
   - release
 
+workflow:
+  rules:
+    - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
+      when: never  # disable detached merge request pipelines
+    - when: always # add all jobs to normal pipeline. This can be overwritten by the rules of the jobs.
 
 ###############################################################################
 ##                                Builds                                     ##
@@ -51,7 +56,7 @@ stages:
     - cmake .. -LAH
       --preset=make_all
       -DBUILD_WARNINGS_AS_ERRORS=ON
-      -DCMAKE_CUDA_ARCHITECTURES=60
+      -DCMAKE_CUDA_ARCHITECTURES=70
       -DBUILD_VF_ALL_SAMPLES=ON
     - make -j4
     - ccache --show-stats
@@ -60,7 +65,7 @@ stages:
     BUILD_FOLDER: "build"
 
 ###############################################################################
-gcc_9:
+gcc_12:
   extends: .gnu_build_template
 
   before_script:
@@ -68,7 +73,7 @@ gcc_9:
     - export CXX=g++
 
 ###############################################################################
-clang_10:
+clang_15:
   extends: .gnu_build_template
 
   before_script:
@@ -112,13 +117,13 @@ msvc_17:
 ###############################################################################
 ##                             Build Python                                  ##
 ###############################################################################
-gcc_9_python:
+gcc_12_python:
   stage: build_python
 
-  needs: ["gcc_9"]
+  needs: ["gcc_12"]
 
   cache:
-    key: "gcc_9-$CI_COMMIT_REF_SLUG"
+    key: "gcc_12-$CI_COMMIT_REF_SLUG"
     paths:
       - build
 
@@ -149,8 +154,6 @@ build_poiseuille_test_container:
   rules:
     - if: $REMOTE_USER && $REMOTE_HOST && $PRIVATE_KEY && $CI_PIPELINE_SOURCE == "schedule"
       when: always
-    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
-      when: never
     - when: manual
       allow_failure: true
 
@@ -169,10 +172,10 @@ build_poiseuille_test_container:
 ###############################################################################
 ##                                Tests                                      ##
 ###############################################################################
-gcc_9_unit_tests:
+gcc_12_unit_tests:
   stage: test
 
-  needs: ["gcc_9"]
+  needs: ["gcc_12"]
 
   before_script:
     - cd $CI_PROJECT_DIR/build
@@ -199,10 +202,10 @@ msvc_17_unit_tests:
     - ctest --output-on-failure -C Release
 
 ###############################################################################
-gcc_9_python_bindings_test:
+gcc_12_python_bindings_test:
   stage: test
 
-  needs: ["gcc_9_python"]
+  needs: ["gcc_12_python"]
 
   before_script:
     - export PYTHONPATH="Python"
@@ -214,7 +217,7 @@ gcc_9_python_bindings_test:
     - python3 -m unittest discover -s Python -v
 
 ###############################################################################
-gcc_9_python_hpc_test:
+gcc_12_python_hpc_test:
   image: python:latest
   stage: test
 
@@ -223,8 +226,6 @@ gcc_9_python_hpc_test:
   rules:
     - if: $REMOTE_USER && $REMOTE_HOST && $PRIVATE_KEY && $CI_PIPELINE_SOURCE == "schedule"
       when: always
-    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
-      when: never
     - when: manual
       allow_failure: true
 
@@ -253,8 +254,6 @@ build-regression-tests-ci:
   rules:
     - if: $CI_PIPELINE_SOURCE == "schedule"
       when: always
-    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
-      when: never
     - when: manual
       allow_failure: true
 
@@ -280,8 +279,6 @@ regression_test_4gpu:
   rules:
     - if: $REMOTE_USER && $REMOTE_HOST && $PRIVATE_KEY && $CI_PIPELINE_SOURCE == "schedule"
       when: always
-    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
-      when: never
     - when: manual
       allow_failure: true
 
@@ -306,8 +303,6 @@ regression_test_8gpu:
   rules:
     - if: $REMOTE_USER && $REMOTE_HOST && $PRIVATE_KEY && $CI_PIPELINE_SOURCE == "schedule"
       when: always
-    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
-      when: never
     - when: manual
       allow_failure: true
 
@@ -323,14 +318,13 @@ regression_test_8gpu:
     - cd ..
     - fieldcompare dir output/8GPU test_data/regression_tests/gpu/DrivenCavity_8GPU_2Levels --include-files "DrivenCavityMultiGPU*.vtu"
     - fieldcompare dir output/8GPU test_data/regression_tests/gpu/SphereScaling_8GPU_2Levels --include-files "SphereScaling*.vtu"
-
 ###############################################################################
 ##                            Benchmark                                      ##
 ###############################################################################
 nvidia_test:
   stage: benchmark
 
-  image: nvidia/cuda:11.1.1-devel-ubuntu20.04
+  image: nvidia/cuda:12.1.1-devel-ubuntu22.04
 
   needs: []
 
@@ -349,8 +343,6 @@ gpu_numerical_tests:
   rules:
     - if: $CI_PIPELINE_SOURCE == "schedule"
       when: always
-    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
-      when: never
     - when: manual
       allow_failure: true
 
@@ -386,20 +378,32 @@ gpu_numerical_tests:
       - $CI_PROJECT_DIR/cache
 
   artifacts:
-    expire_in: 1 hrs
     paths:
       - $CI_PROJECT_DIR/numerical_tests_gpu_results.txt
 
 ###############################################################################
 ##                        Code analysis                                      ##
 ###############################################################################
-clang_build_analyzer_clang_10:
+.analyze_template:
   stage: analyze
 
-  only: ["schedules"]
-
   needs: []
 
+  tags:
+    - gpu
+    - linux
+
+  rules:
+    - if: '$CI_PROJECT_NAMESPACE == "irmb" && $CI_COMMIT_BRANCH == "develop"'
+      when: always
+    - if: '$CI_PROJECT_NAMESPACE != "irmb"'
+      when: manual
+      allow_failure: true
+
+
+clang_build_analyzer:
+  extends: .analyze_template
+
   before_script:
     - export CC=clang
     - export CXX=clang++
@@ -424,22 +428,19 @@ clang_build_analyzer_clang_10:
     - ClangBuildAnalyzer --analyze CBA
 
 ###############################################################################
-include_what_you_use_clang_10:
-  stage: analyze
-
-  only: ["schedules"]
-
-  needs: []
+include_what_you_use_clang_15:
+  extends: .analyze_template
 
   before_script:
+    - apt-get update && apt-get install -y libclang-15-dev llvm-15-dev
     - export CC=clang
     - export CXX=clang++
     - $CXX --version
     - cd /tmp
     - git clone https://github.com/include-what-you-use/include-what-you-use.git
     - cd include-what-you-use
-    - git checkout clang_10
-    - cmake . -DCMAKE_PREFIX_PATH=/usr/lib/llvm-10
+    - git checkout clang_15
+    - cmake . -DCMAKE_PREFIX_PATH=/usr/lib/llvm-15
     - make
     - export PATH+=:$(pwd)/bin
 
@@ -453,24 +454,13 @@ include_what_you_use_clang_10:
     - make
 
 ###############################################################################
-.analyze_template:
-
-  rules: # dont create MR pipeline, run always on irmb/develop and manual in all other cases
-    - if: $CI_PIPELINE_SOURCE == "merge_request_event"
-      when: never
-    - if: '$CI_PROJECT_NAMESPACE == "irmb" && $CI_COMMIT_BRANCH == "develop"'
-      when: always
-    - when: manual
-      allow_failure: true
-
 cppcheck:
-  stage: analyze
-
   extends: .analyze_template
 
-  needs: []
-
   before_script:
+    - apt-get update && apt-get install -y libpcre3-dev
+    - chmod +x utilities/install-cppcheck.sh 
+    - ./utilities/install-cppcheck.sh
     - cppcheck --version
 
   script:
@@ -486,17 +476,9 @@ cppcheck:
 # lizard - Cyclomatic Complexity Analyzer
 # Ignore warnings is manually set to 191. This job will fail when new warnings are added.
 lizard:
-  stage: analyze
-
   extends: .analyze_template
 
-  needs: []
-
   before_script:
-    - cd /tmp
-    - git clone https://github.com/terryyin/lizard.git
-    - cd lizard
-    - python3 setup.py install
     - lizard --version
 
   script:
@@ -510,25 +492,25 @@ lizard:
 
 ###############################################################################
 # code coverage
-gcov_gcc_9:
+gcov_gcc:
   stage: analyze
 
   extends: .analyze_template
 
-  needs: []
-
   before_script:
     - gcovr --version
+    - export CC=/usr/bin/gcc-11
+    - export CXX=/usr/bin/g++-11
 
   script:
     - mkdir -p $CI_PROJECT_DIR/build
     - cd $CI_PROJECT_DIR/build
     - cmake ..
       --preset=make_all
-      -DCMAKE_CUDA_ARCHITECTURES=60
-      -DBUILD_VF_COVERAGE=ON
+      -DCMAKE_BUILD_TYPE=PROFILE
+      -DCMAKE_CUDA_ARCHITECTURES=70
     - make -j4
-    - ./bin/basicsTests
+    - ctest --output-on-failure
     - cd ..
     - mkdir coverage
     - gcovr -r $CI_PROJECT_DIR -k build -f "src" --print-summary --html coverage/coverage.html --html-details --xml coverage/coverage.xml
@@ -551,16 +533,10 @@ gcov_gcc_9:
 ###############################################################################
 # this job also produces a compile commands json file.
 clang-tidy:
-  stage: analyze
-
   extends: .analyze_template
 
-  needs: []
-
-  allow_failure: true
-
   before_script:
-    - run-clang-tidy -h
+    - run-clang-tidy-15 -h
 
   script:
     - mkdir -p $CI_PROJECT_DIR/build
@@ -570,7 +546,7 @@ clang-tidy:
       -DBUILD_VF_DOUBLE_ACCURACY=ON
       -DBUILD_VF_GPU=OFF
     - python3 ../utilities/filterCompileCommands.py compile_commands.json
-    - run-clang-tidy -quiet > clangtidy.txt
+    - run-clang-tidy-15 -quiet > clangtidy.txt
 
   artifacts:
     when: always
@@ -580,6 +556,33 @@ clang-tidy:
       - build/compile_commands.json
 
 
+###############################################################################
+##                            Sanitizer                                      ##
+###############################################################################
+sanitizer-address-leak-ub:
+  extends: .analyze_template
+  script:
+    - mkdir -p build && cd build
+    - cmake ..
+      --preset=make_all
+      -DCMAKE_CUDA_ARCHITECTURES=70
+      -DENABLE_SANITIZER_ADDRESS=ON
+      -DENABLE_SANITIZER_LEAK=ON
+      -DENABLE_SANITIZER_UNDEFINED_BEHAVIOR=ON
+    - make -j8
+    - ctest --output-on-failure
+
+sanitizer-memory:
+  extends: .analyze_template
+  script:
+    - mkdir -p build && cd build
+    - cmake ..
+      --preset=make_all
+      -DCMAKE_CUDA_ARCHITECTURES=70
+      -DENABLE_SANITIZER_MEMORY=ON
+    - make -j8
+    - ctest --output-on-failure
+
 ###############################################################################
 # doxgen
 pages:
@@ -628,7 +631,7 @@ pages:
 vf_to_phoenix:
   extends: .deploy_template
   stage: deploy
-  needs: ["gcc_9_python", "gcc_9_unit_tests", "gcc_9_python_bindings_test"]
+  needs: ["gcc_12_python", "gcc_12_unit_tests", "gcc_12_python_bindings_test"]
 
   when: manual
 
@@ -652,7 +655,7 @@ vf_wheel_to_jupyterhub:
 
   only: ["manual"]
 
-  needs: ["gcc_9_python", "gcc_9_unit_tests", "gcc_9_python_bindings_test"]
+  needs: ["gcc_12_python", "gcc_12_unit_tests", "gcc_12_python_bindings_test"]
 
   variables:
     HOST: "gitlab-runner01.irmb.bau.tu-bs.de"
@@ -680,7 +683,7 @@ sonar-scanner:
   variables:
     SONAR_HOST_URL: "http://gitlab-runner01.irmb.bau.tu-bs.de/sonarqube/"
 
-  needs: ["cppcheck","clang-tidy","gcov_gcc_9"]
+  needs: ["cppcheck","clang-tidy","gcov_gcc"]
 
   before_script:
     - cd /tmp
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000000000000000000000000000000000000..431c2f796787e5ddb22df5f93587eeac6362f9cf
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,4 @@
+{
+    "c-cpp-flylint.flexelint.enable": false,
+    "c-cpp-flylint.flawfinder.enable": false
+}
\ No newline at end of file
diff --git a/3rdParty/cuda_samples/helper_functions.h b/3rdParty/cuda_samples/helper_functions.h
index 3fc2ea47ba7d39a4bf6a882f65b16779de6de0ac..058aee7aac750787307a385d7e27b30c381c0ced 100644
--- a/3rdParty/cuda_samples/helper_functions.h
+++ b/3rdParty/cuda_samples/helper_functions.h
@@ -48,7 +48,7 @@
 #include <vector>
 
 // includes, timer, string parsing, image helpers
-#include <helper_image.h>  // helper functions for image compare, dump, data comparisons
+// #include <helper_image.h>  // helper functions for image compare, dump, data comparisons
 #include <helper_string.h>  // helper functions for string parsing
 #include <helper_timer.h>   // helper functions for timers
 
diff --git a/CMake/Sanitizers.cmake b/CMake/Sanitizers.cmake
index 6f16207fefbc2f9ca72f065950b242a4333d442e..ea37a66a1ed7d4416a5fbe54afc2390e168d848b 100644
--- a/CMake/Sanitizers.cmake
+++ b/CMake/Sanitizers.cmake
@@ -52,6 +52,7 @@ function(enable_sanitizers project_name)
        "${LIST_OF_SANITIZERS}"
        STREQUAL
        "")
+      message(STATUS "Enabling sanitizers: ${LIST_OF_SANITIZERS}")
       target_compile_options(${project_name} INTERFACE -fsanitize=${LIST_OF_SANITIZERS})
       target_link_options(${project_name} INTERFACE -fsanitize=${LIST_OF_SANITIZERS})
     endif()
diff --git a/CMake/compilerflags/GNU.cmake b/CMake/compilerflags/GNU.cmake
index 8d54b52a434719a1e99aa705b121593973f3375a..cf77b2228e1ac470f064db71c8f8e87f33902f04 100644
--- a/CMake/compilerflags/GNU.cmake
+++ b/CMake/compilerflags/GNU.cmake
@@ -17,10 +17,10 @@ if(NOT BUILD_VF_INCLUDE_WHAT_YOU_USE) # optimization flag '-funroll-all-loops' i
 endif()
 
 # gcov
-if (BUILD_VF_COVERAGE)
-    list(APPEND CS_COMPILER_FLAGS_CXX "--coverage")
-    set(CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS} " --coverage")
-endif()
+# According to https://gcovr.com/en/stable/cookbook.html#out-of-source-builds-with-cmake
+# This flags are used if cmake is called with -DCMAKE_BUILD_TYPE=PROFILE
+set(CMAKE_C_FLAGS_PROFILE --coverage)
+set(CMAKE_CXX_FLAGS_PROFILE --coverage)
 
 #############################################################################################################
 # warnings
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e7f62a5ba3308a7e382e1802a8cc42a1bb043b25..8822b504af3ff680f12f6d16e2e4c5b7a615ac00 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -58,7 +58,6 @@ option(BUILD_VF_UNIT_TESTS "Build VirtualFluids unit tests" OFF)
 option(BUILD_VF_CLANG_TIDY "Add the clang tidy checks to the targets" OFF)
 option(BUILD_VF_INCLUDE_WHAT_YOU_USE "Add IWYU to the targets" OFF)
 option(BUILD_VF_CPPCHECK "Add cppcheck to the targets" OFF)
-option(BUILD_VF_COVERAGE "Add the -coverage compiler flag." OFF)
 
 option(BUILD_CUDA_LTO "Enables the cuda link optimization." OFF)
 
diff --git a/Containers/Ubuntu22_04.Dockerfile b/Containers/Ubuntu22_04.Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..eff34a26937107a7f5612a598306e83f22de3ab8
--- /dev/null
+++ b/Containers/Ubuntu22_04.Dockerfile
@@ -0,0 +1,46 @@
+# VirtualFluids Development Image:
+# Ubuntu 22.04
+
+FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
+
+# timezone
+ARG TZ
+ENV TZ="$TZ"
+
+ARG DEBIAN_FRONTEND=noninteractive
+RUN apt-get update &&   \
+    apt-get install -y  \
+    git wget unzip software-properties-common \
+    build-essential g++-12 gcc-12 gdb \
+    ccache              \
+    ninja-build         \
+    openmpi-bin         \
+    libopenmpi-dev      \
+    libomp-15-dev          \
+    clang-15               \
+    clang-format-15        \
+    clang-tidy-15          \
+    clang-tools-15         \
+    python3.11          \
+    python3-pip         \
+    python3.11-dev      \
+    cppcheck            \
+    clangd-12           \
+    && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100 \
+    && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 100 \
+    && update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-15 100 \
+    && update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 100 \
+    && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 100 \
+    && update-alternatives --install /usr/bin/clangd clangd /usr/bin/clangd-12 100 \
+    && pip3 install      \
+        cmake==3.26.3    \
+        setuptools       \
+        wheel            \
+        scikit-build     \
+        pyvista          \
+        numpy            \
+        ansible          \
+        'jinja2<3.1'     \
+        gcovr==6.0       \
+        lizard==1.17.10
+
diff --git a/Python/SlurmTests/poiseuille/result_collector.py b/Python/SlurmTests/poiseuille/result_collector.py
index 06efa481c8c010647531426f2af2bec2c2d7eaee..ed374b7d6dc8a32c46716c4648fc8ba35cbb9b4c 100644
--- a/Python/SlurmTests/poiseuille/result_collector.py
+++ b/Python/SlurmTests/poiseuille/result_collector.py
@@ -1,73 +1,73 @@
-from typing import Collection, List
+# from typing import Collection, List
 
-import pyvista as pv
-from poiseuille.analytical import PoiseuilleSettings, poiseuille_at_heights
-from vtk_utilities import vertical_column_from_mesh, get_values_from_indices
-from SlurmTests.poiseuille.settings import Scaling
+# import pyvista as pv
+# from poiseuille.analytical import PoiseuilleSettings, poiseuille_at_heights
+# from vtk_utilities import vertical_column_from_mesh, get_values_from_indices
+# from SlurmTests.poiseuille.settings import Scaling
 
 
-def get_output_file_name(output_folder, runtime_params):
-    timesteps = runtime_params.number_of_timesteps
-    file_name = f"{output_folder}/mq/mq{timesteps}/mq0_{timesteps}.bin.vtu"
+# def get_output_file_name(output_folder, runtime_params):
+#     timesteps = runtime_params.number_of_timesteps
+#     file_name = f"{output_folder}/mq/mq{timesteps}/mq0_{timesteps}.bin.vtu"
 
-    return file_name
+#     return file_name
 
 
-def get_mesh_for_last_timestep(output_folder, runtime_params):
-    file_name_of_last_timestep = get_output_file_name(output_folder, runtime_params)
-    mesh_of_last_timestep = pv.read(file_name_of_last_timestep)
-    return mesh_of_last_timestep
+# def get_mesh_for_last_timestep(output_folder, runtime_params):
+#     file_name_of_last_timestep = get_output_file_name(output_folder, runtime_params)
+#     mesh_of_last_timestep = pv.read(file_name_of_last_timestep)
+#     return mesh_of_last_timestep
 
 
-def get_heights_from_indices(mesh, indices):
-    return [mesh.points[index][2] for index in indices]
+# def get_heights_from_indices(mesh, indices):
+#     return [mesh.points[index][2] for index in indices]
 
 
-def get_heights(output_folder, runtime_params):
-    mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
-    column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
-    heights = get_heights_from_indices(mesh_of_last_timestep, column_indices)
-    return heights
+# def get_heights(output_folder, runtime_params):
+#     mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
+#     column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
+#     heights = get_heights_from_indices(mesh_of_last_timestep, column_indices)
+#     return heights
 
 
-def get_numerical_results(runtime_params, output_folder):
-    mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
-    velocities_in_x_direction = mesh_of_last_timestep.get_array("Vx")
-    column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
-    numerical_results = get_values_from_indices(velocities_in_x_direction, column_indices)
+# def get_numerical_results(runtime_params, output_folder):
+#     mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
+#     velocities_in_x_direction = mesh_of_last_timestep.get_array("Vx")
+#     column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
+#     numerical_results = get_values_from_indices(velocities_in_x_direction, column_indices)
 
-    return numerical_results
+#     return numerical_results
 
 
-def get_analytical_results(grid_params, physical_params, kernel, height_values):
-    channel_height = grid_params.number_of_nodes_per_direction[2]
-    settings = get_analytical_poiseuille_settings(channel_height, physical_params, kernel)
-    max_grid_height = channel_height * grid_params.node_distance
-    adjusted_height_values = [value / max_grid_height * channel_height for value in height_values]
-    analytical_results = poiseuille_at_heights(settings, adjusted_height_values)
-    return analytical_results
+# def get_analytical_results(grid_params, physical_params, kernel, height_values):
+#     channel_height = grid_params.number_of_nodes_per_direction[2]
+#     settings = get_analytical_poiseuille_settings(channel_height, physical_params, kernel)
+#     max_grid_height = channel_height * grid_params.node_distance
+#     adjusted_height_values = [value / max_grid_height * channel_height for value in height_values]
+#     analytical_results = poiseuille_at_heights(settings, adjusted_height_values)
+#     return analytical_results
 
 
-def get_analytical_poiseuille_settings(height, physical_params, kernel):
-    settings = PoiseuilleSettings()
-    settings.height = height
-    settings.viscosity = physical_params.lattice_viscosity
-    settings.density = 1
-    settings.force = kernel.forcing_in_x1
+# def get_analytical_poiseuille_settings(height, physical_params, kernel):
+#     settings = PoiseuilleSettings()
+#     settings.height = height
+#     settings.viscosity = physical_params.lattice_viscosity
+#     settings.density = 1
+#     settings.force = kernel.forcing_in_x1
 
-    return settings
+#     return settings
 
 
-def collect_results() -> (List[List[float]], List[List[float]]):
-    analytical_results = []
-    numerical_results = []
+# def collect_results() -> (List[List[float]], List[List[float]]):
+#     analytical_results = []
+#     numerical_results = []
 
-    for simulation_run in range(0, 3):
-        output_folder = f"output-{simulation_run}"
-        grid_params, physical_params, runtime_params, kernel = Scaling.configuration_for_scale_level(simulation_run)
-        heights = get_heights(output_folder, runtime_params)
-        analytical_results.append(
-            get_analytical_results(grid_params, physical_params, kernel, heights))
-        numerical_results.append(get_numerical_results(runtime_params, output_folder))
+#     for simulation_run in range(0, 3):
+#         output_folder = f"output-{simulation_run}"
+#         grid_params, physical_params, runtime_params, kernel = Scaling.configuration_for_scale_level(simulation_run)
+#         heights = get_heights(output_folder, runtime_params)
+#         analytical_results.append(
+#             get_analytical_results(grid_params, physical_params, kernel, heights))
+#         numerical_results.append(get_numerical_results(runtime_params, output_folder))
 
-    return analytical_results, numerical_results
+#     return analytical_results, numerical_results
diff --git a/Python/poiseuille/test_poiseuille_l2.py b/Python/poiseuille/test_poiseuille_l2.py
index 818cba40e115945c60e4fa2ac96b3b6b5ab0bba8..f863991364974ffd9a02e9ebb212c83e1182be42 100644
--- a/Python/poiseuille/test_poiseuille_l2.py
+++ b/Python/poiseuille/test_poiseuille_l2.py
@@ -32,153 +32,154 @@ r"""
 ! \author Sven Marcus, Henry Korb
 =======================================================================================
 """
-import os
-import shutil
-import unittest
 
-import matplotlib.pyplot as plt
-import numpy as np
-import pyvista as pv
-from pyfluids import cpu
-from scipy import stats
+# import os
+# import shutil
+# import unittest
 
-from errors import normalized_l2_error
-from poiseuille.analytical import poiseuille_at_heights, PoiseuilleSettings
-from poiseuille.simulation import run_simulation
-from vtk_utilities import vertical_column_from_mesh, get_values_from_indices
+# import matplotlib.pyplot as plt
+# import numpy as np
+# import pyvista as pv
+# from pyfluids import cpu
+# from scipy import stats
 
+# from errors import normalized_l2_error
+# from poiseuille.analytical import poiseuille_at_heights, PoiseuilleSettings
+# from poiseuille.simulation import run_simulation
+# from vtk_utilities import vertical_column_from_mesh, get_values_from_indices
 
-class TestPoiseuilleFlow(unittest.TestCase):
-    node_distances = [1, 0.5, 0.25]
-    number_of_nodes = [16, 32, 64]
-    number_of_timesteps = [2_500_000, 5_000_000, 10_000_000]
-    forcings = [1e-9, 5e-10, 2.5e-10]
-    viscosities = [1e-3, 2e-3, 4e-3]
 
-    def zipped_settings(self):
-        return zip(self.node_distances,
-                   self.number_of_nodes,
-                   self.number_of_timesteps,
-                   self.forcings,
-                   self.viscosities)
+# class TestPoiseuilleFlow(unittest.TestCase):
+#     node_distances = [1, 0.5, 0.25]
+#     number_of_nodes = [16, 32, 64]
+#     number_of_timesteps = [2_500_000, 5_000_000, 10_000_000]
+#     forcings = [1e-9, 5e-10, 2.5e-10]
+#     viscosities = [1e-3, 2e-3, 4e-3]
 
-    def test_poiseuille_flow(self):
-        self.skipTest("This test is not implemented correctly yet")
-        plt.ion()
+#     def zipped_settings(self):
+#         return zip(self.node_distances,
+#                    self.number_of_nodes,
+#                    self.number_of_timesteps,
+#                    self.forcings,
+#                    self.viscosities)
 
-        physical_params = cpu.parameters.PhysicalParameters()
+#     def test_poiseuille_flow(self):
+#         self.skipTest("This test is not implemented correctly yet")
+#         plt.ion()
 
-        runtime_params = cpu.parameters.RuntimeParameters()
-        runtime_params.number_of_threads = os.cpu_count()
-        runtime_params.timestep_log_interval = 10000
+#         physical_params = cpu.parameters.PhysicalParameters()
 
-        kernel = cpu.kernel.LBMKernel(cpu.kernel.KernelType.CompressibleCumulantFourthOrderViscosity)
-        kernel.use_forcing = True
+#         runtime_params = cpu.parameters.RuntimeParameters()
+#         runtime_params.number_of_threads = os.cpu_count()
+#         runtime_params.timestep_log_interval = 10000
 
-        normalized_l2_errors = []
-        for delta_x, nodes, timesteps, forcing, viscosity in self.zipped_settings():
-            physical_params.lattice_viscosity = viscosity
-            runtime_params.number_of_timesteps = timesteps
-            kernel.forcing_in_x1 = forcing
+#         kernel = cpu.kernel.LBMKernel(cpu.kernel.KernelType.CompressibleCumulantFourthOrderViscosity)
+#         kernel.use_forcing = True
 
-            grid_params = create_grid_params_with_nodes_in_column(nodes, delta_x)
-            l2_error = get_l2_error_for_simulation(grid_params, physical_params, runtime_params, kernel)
-            normalized_l2_errors.append(l2_error)
+#         normalized_l2_errors = []
+#         for delta_x, nodes, timesteps, forcing, viscosity in self.zipped_settings():
+#             physical_params.lattice_viscosity = viscosity
+#             runtime_params.number_of_timesteps = timesteps
+#             kernel.forcing_in_x1 = forcing
 
-        nodes_as_log = [np.log10(node) for node in self.number_of_nodes]
-        l2_norms_as_log = [np.log10(l2) for l2 in normalized_l2_errors]
-        res = stats.linregress(nodes_as_log, l2_norms_as_log)
+#             grid_params = create_grid_params_with_nodes_in_column(nodes, delta_x)
+#             l2_error = get_l2_error_for_simulation(grid_params, physical_params, runtime_params, kernel)
+#             normalized_l2_errors.append(l2_error)
 
-        plt.xscale("log")
-        plt.yscale("log")
-        plt.plot(self.number_of_nodes, [np.power(10, res.intercept + res.slope * node) for node in nodes_as_log], 'r-')
-        plt.plot(self.number_of_nodes, normalized_l2_errors, "x:")
-        plt.show()
+#         nodes_as_log = [np.log10(node) for node in self.number_of_nodes]
+#         l2_norms_as_log = [np.log10(l2) for l2 in normalized_l2_errors]
+#         res = stats.linregress(nodes_as_log, l2_norms_as_log)
 
-        print(normalized_l2_errors)
-        self.assertAlmostEqual(res.slope, -2, places=2)
+#         plt.xscale("log")
+#         plt.yscale("log")
+#         plt.plot(self.number_of_nodes, [np.power(10, res.intercept + res.slope * node) for node in nodes_as_log], 'r-')
+#         plt.plot(self.number_of_nodes, normalized_l2_errors, "x:")
+#         plt.show()
 
+#         print(normalized_l2_errors)
+#         self.assertAlmostEqual(res.slope, -2, places=2)
 
-def get_l2_error_for_simulation(grid_params, physical_params, runtime_params, kernel):
-    output_folder = "./output"
-    run_simulation_with_settings(grid_params, physical_params, runtime_params, kernel, output_folder)
-    heights = get_heights(output_folder, runtime_params)
 
-    numerical_results = get_numerical_results(runtime_params, output_folder)
-    analytical_results = get_analytical_results(grid_params, physical_params, kernel, heights)
+# def get_l2_error_for_simulation(grid_params, physical_params, runtime_params, kernel):
+#     output_folder = "./output"
+#     run_simulation_with_settings(grid_params, physical_params, runtime_params, kernel, output_folder)
+#     heights = get_heights(output_folder, runtime_params)
 
-    plt.plot(heights, numerical_results)
-    plt.plot(heights, analytical_results)
-    plt.legend(["numerical", "analytical"])
-    plt.show()
+#     numerical_results = get_numerical_results(runtime_params, output_folder)
+#     analytical_results = get_analytical_results(grid_params, physical_params, kernel, heights)
 
-    return normalized_l2_error(analytical_results, numerical_results)
+#     plt.plot(heights, numerical_results)
+#     plt.plot(heights, analytical_results)
+#     plt.legend(["numerical", "analytical"])
+#     plt.show()
 
+#     return normalized_l2_error(analytical_results, numerical_results)
 
-def run_simulation_with_settings(grid_params, physical_params, runtime_params, kernel, output_folder):
-    shutil.rmtree(output_folder, ignore_errors=True)
-    run_simulation(physical_params, grid_params, runtime_params, kernel)
 
+# def run_simulation_with_settings(grid_params, physical_params, runtime_params, kernel, output_folder):
+#     shutil.rmtree(output_folder, ignore_errors=True)
+#     run_simulation(physical_params, grid_params, runtime_params, kernel)
 
-def get_heights(output_folder, runtime_params):
-    mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
-    column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
-    heights = get_heights_from_indices(mesh_of_last_timestep, column_indices)
-    return heights
 
+# def get_heights(output_folder, runtime_params):
+#     mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
+#     column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
+#     heights = get_heights_from_indices(mesh_of_last_timestep, column_indices)
+#     return heights
 
-def get_numerical_results(runtime_params, output_folder):
-    mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
-    velocities_in_x_direction = mesh_of_last_timestep.get_array("Vx")
-    column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
-    numerical_results = get_values_from_indices(velocities_in_x_direction, column_indices)
 
-    return numerical_results
+# def get_numerical_results(runtime_params, output_folder):
+#     mesh_of_last_timestep = get_mesh_for_last_timestep(output_folder, runtime_params)
+#     velocities_in_x_direction = mesh_of_last_timestep.get_array("Vx")
+#     column_indices = vertical_column_from_mesh(mesh_of_last_timestep)
+#     numerical_results = get_values_from_indices(velocities_in_x_direction, column_indices)
 
+#     return numerical_results
 
-def get_analytical_results(grid_params, physical_params, kernel, height_values):
-    channel_height = grid_params.number_of_nodes_per_direction[2]
-    settings = get_analytical_poiseuille_settings(channel_height, physical_params, kernel)
-    max_grid_height = channel_height * grid_params.node_distance
-    adjusted_height_values = [value / max_grid_height * channel_height for value in height_values]
-    analytical_results = poiseuille_at_heights(settings, adjusted_height_values)
-    return analytical_results
 
+# def get_analytical_results(grid_params, physical_params, kernel, height_values):
+#     channel_height = grid_params.number_of_nodes_per_direction[2]
+#     settings = get_analytical_poiseuille_settings(channel_height, physical_params, kernel)
+#     max_grid_height = channel_height * grid_params.node_distance
+#     adjusted_height_values = [value / max_grid_height * channel_height for value in height_values]
+#     analytical_results = poiseuille_at_heights(settings, adjusted_height_values)
+#     return analytical_results
 
-def get_mesh_for_last_timestep(output_folder, runtime_params):
-    file_name_of_last_timestep = get_output_file_name(output_folder, runtime_params)
-    mesh_of_last_timestep = pv.read(file_name_of_last_timestep)
-    return mesh_of_last_timestep
 
+# def get_mesh_for_last_timestep(output_folder, runtime_params):
+#     file_name_of_last_timestep = get_output_file_name(output_folder, runtime_params)
+#     mesh_of_last_timestep = pv.read(file_name_of_last_timestep)
+#     return mesh_of_last_timestep
 
-def get_analytical_poiseuille_settings(height, physical_params, kernel):
-    settings = PoiseuilleSettings()
-    settings.height = height
-    settings.viscosity = physical_params.lattice_viscosity
-    settings.density = 1
-    settings.force = kernel.forcing_in_x1
 
-    return settings
+# def get_analytical_poiseuille_settings(height, physical_params, kernel):
+#     settings = PoiseuilleSettings()
+#     settings.height = height
+#     settings.viscosity = physical_params.lattice_viscosity
+#     settings.density = 1
+#     settings.force = kernel.forcing_in_x1
 
+#     return settings
 
-def get_output_file_name(output_folder, runtime_params):
-    timesteps = runtime_params.number_of_timesteps
-    file_name = f"{output_folder}/mq/mq{timesteps}/mq0_{timesteps}.bin.vtu"
 
-    return file_name
+# def get_output_file_name(output_folder, runtime_params):
+#     timesteps = runtime_params.number_of_timesteps
+#     file_name = f"{output_folder}/mq/mq{timesteps}/mq0_{timesteps}.bin.vtu"
 
+#     return file_name
 
-def get_heights_from_indices(mesh, indices):
-    return [mesh.points[index][2] for index in indices]
 
+# def get_heights_from_indices(mesh, indices):
+#     return [mesh.points[index][2] for index in indices]
 
-def create_grid_params_with_nodes_in_column(nodes_in_column, delta_x):
-    grid_params = cpu.parameters.GridParameters()
-    grid_params.node_distance = delta_x
-    grid_params.number_of_nodes_per_direction = [1, 1, nodes_in_column]
-    grid_params.blocks_per_direction = [1, 1, 8]
-    grid_params.periodic_boundary_in_x1 = True
-    grid_params.periodic_boundary_in_x2 = True
-    grid_params.periodic_boundary_in_x3 = False
 
-    return grid_params
+# def create_grid_params_with_nodes_in_column(nodes_in_column, delta_x):
+#     grid_params = cpu.parameters.GridParameters()
+#     grid_params.node_distance = delta_x
+#     grid_params.number_of_nodes_per_direction = [1, 1, nodes_in_column]
+#     grid_params.blocks_per_direction = [1, 1, 8]
+#     grid_params.periodic_boundary_in_x1 = True
+#     grid_params.periodic_boundary_in_x2 = True
+#     grid_params.periodic_boundary_in_x3 = False
+
+#     return grid_params
diff --git a/Python/requirements.txt b/Python/requirements.txt
index 8628634d1b85ebc0b07328d563d479f35641be97..355bb47d748f0b593ed07da186d956d4a5cf48a1 100644
--- a/Python/requirements.txt
+++ b/Python/requirements.txt
@@ -4,20 +4,19 @@ cycler==0.10.0
 imageio==2.9.0
 iniconfig==1.1.1
 kiwisolver==1.3.1
-matplotlib==3.3.3
+matplotlib==3.7.1
 meshio==4.3.8
-numpy==1.19.5
+numpy==1.24.0
 packaging==20.8
-Pillow==8.1.0
+Pillow==9.5.0
 pluggy==0.13.1
 py==1.10.0
 pyparsing==2.4.7
 pytest==6.2.1
 python-dateutil==2.8.1
-pyvista==0.28.1
-scipy==1.6.1
+pyvista==0.39.1
+scipy==1.10
 scooby==0.5.6
 six==1.15.0
 toml==0.10.2
-transforms3d==0.3.1
-vtk==9.0.1
+transforms3d==0.4.1
diff --git a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.cpp b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.cpp
index 58a4128fbd1ae54f59c625cb7b7ca4f851885962..6821f270428a32c2b579174a6c3e1662d0ccc55b 100644
--- a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.cpp
+++ b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.cpp
@@ -1,6 +1,7 @@
 #include "MathematicaListOfListsImp.h"
 
 #include <iomanip>
+#include <limits>
 
 std::shared_ptr<MathematicaListOfLists> MathematicaListOfListsImp::getNewInstance(std::string listName, std::vector<std::vector<double>> listOfLists)
 {
diff --git a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.h b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.h
index ba19ba20dde6f9810f1003fb56964c9915cb425b..a1e82892ca92fc8b3b484440edb30bfbf957d965 100644
--- a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.h
+++ b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/ListOfLists/MathematicaListOfListsImp.h
@@ -1,5 +1,5 @@
 #ifndef MATHEMATICA_LIST_OF_LISTS_IMP_H
-#define MATHEMATICA_LIST_OF_LISTS_IMÜ_H
+#define MATHEMATICA_LIST_OF_LISTS_IMP_H
 
 #include "MathematicaListOfLists.h"
 
diff --git a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/PointList/MathematicaPointListImp.cpp b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/PointList/MathematicaPointListImp.cpp
index 6689d5f14ad94cad908584c2847cc02536df60a6..cd00dddf194903666dc36abba86985c0a643d310 100644
--- a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/PointList/MathematicaPointListImp.cpp
+++ b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/MathematicaFunction/PointList/MathematicaPointListImp.cpp
@@ -4,6 +4,7 @@
 #include "MathematicaPointList.h"
 
 #include <iomanip>
+#include <limits>
 
 std::shared_ptr<MathematicaPointList> MathematicaPointListImp::getNewInstance(std::string listName, std::vector<std::shared_ptr<DataPoint> > plotData)
 {
diff --git a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReader.h b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReader.h
index 4ac2f917f904f32a80427514bffeeccc4dce53e9..21ee18ef262a24ed5ba978c9f1623ebc0ce5a286 100644
--- a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReader.h
+++ b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReader.h
@@ -9,6 +9,7 @@ class PostProcessingConfigData;
 class PostProcessingConfigFileReader
 {
 public:
+	virtual ~PostProcessingConfigFileReader() = default;
 	virtual std::shared_ptr<PostProcessingConfigData> readConfigFile(std::string filePath) = 0;
 };
 #endif
\ No newline at end of file
diff --git a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.cpp b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.cpp
index 6c52eeb93f3e556ebfad4e993eb56c63c95b56fd..968af578a868b9e2655f4062d89fda8fed37941b 100644
--- a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.cpp
+++ b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.cpp
@@ -64,7 +64,3 @@ std::shared_ptr<PostProcessingConfigData> PostProcessingConfigFileReaderImp::rea
 	
 	return data;
 }
-
-PostProcessingConfigFileReaderImp::PostProcessingConfigFileReaderImp()
-{
-}
diff --git a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.h b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.h
index a47d53820807a6ac2fada77d7cb7efc09f658e07..e5355a708adb753e78089a68dc9f889df9a83fc5 100644
--- a/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.h
+++ b/apps/gpu/tests/NumericalTestPostProcessing/Utilities/PostProcessingConfigFileReader/PostProcessingConfigFileReaderImp.h
@@ -8,10 +8,10 @@ class PostProcessingConfigFileReaderImp : public PostProcessingConfigFileReader
 public:
 	static std::shared_ptr<PostProcessingConfigFileReader> getNewInstance();
 
-	std::shared_ptr<PostProcessingConfigData> readConfigFile(std::string filePath);
+	std::shared_ptr<PostProcessingConfigData> readConfigFile(std::string filePath) override;
 
 private:
-	PostProcessingConfigFileReaderImp();
+	PostProcessingConfigFileReaderImp() = default;
 
 };
 #endif
\ No newline at end of file
diff --git a/apps/gpu/tests/NumericalTestPostProcessing/main.cpp b/apps/gpu/tests/NumericalTestPostProcessing/main.cpp
index bf88ad153d49bea167e148bab1abba8fa760b70f..e5dbeef9c7d3928c039049627129689ab92c653b 100644
--- a/apps/gpu/tests/NumericalTestPostProcessing/main.cpp
+++ b/apps/gpu/tests/NumericalTestPostProcessing/main.cpp
@@ -39,12 +39,12 @@ int main(int argc, char **argv)
 	std::shared_ptr<MathematicaAssistantFactory> assistantFactory = MathematicaAssistantFactoryImp::getNewInstance();
 	std::vector<std::shared_ptr<MathematicaAssistant> > mathematicaAssistants = assistantFactory->makeMathematicaAssistants(configData->getAssistants(), functionFactory);
 
-	for (int sim = 0; sim < configData->getSimulations().size(); sim++) {
-		for (int comb = 0; comb < configData->getDataCombinations().size(); comb++) {
+	for (uint sim = 0; sim < configData->getSimulations().size(); sim++) {
+		for (uint comb = 0; comb < configData->getDataCombinations().size(); comb++) {
 			std::shared_ptr<LogFileDataAssistantStrategy> strategy = assistentStrategyFactory->makeLogFileDataAssistantStrategy(configData->getSimulations().at(sim));
 			std::vector<std::shared_ptr<LogFileDataGroup> > logFileDataSorted = assistentLogFile->findDataCombination(logFileDataVector, strategy, configData->getDataCombinations().at(comb));
-			for (int i = 0; i < logFileDataSorted.size(); i++) {
-				for (int j = 0; j < mathematicaAssistants.size(); j++)
+			for (uint i = 0; i < logFileDataSorted.size(); i++) {
+				for (uint j = 0; j < mathematicaAssistants.size(); j++)
 					mathematicaAssistants.at(j)->makeMathematicaOutput(logFileDataSorted.at(i), aMathmaticaFile);
 			}
 		}
diff --git a/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.cpp b/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.cpp
index bf93a95f450ff1a21062644d9be098eb2c2c235f..a8a4a4df2e4d04564dbeb2a881cebd95ce6a1a9f 100644
--- a/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.cpp
+++ b/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.cpp
@@ -17,7 +17,7 @@ std::shared_ptr<PhiTest> PhiTest::getNewInstance(std::shared_ptr<ColorConsoleOut
 
 void PhiTest::evaluate()
 {
-	for (int i = 0; i < postProStrategies.size(); i++)
+	for (uint i = 0; i < postProStrategies.size(); i++)
 		phiDiff.push_back(postProStrategies.at(i)->getPhiDiff(dataToCalculate));
 	
 	orderOfAccuracy = calcOrderOfAccuracy(phiDiff);
@@ -46,7 +46,7 @@ std::string PhiTest::getDataToCalculate()
 std::vector<int> PhiTest::getLx()
 {
 	std::vector<int> lxINT;
-	for (int i = 0; i < lx.size(); i++)
+	for (uint i = 0; i < lx.size(); i++)
 		lxINT.push_back((int)lx.at(i));
 	return lxINT;
 }
@@ -62,7 +62,7 @@ double PhiTest::getOrderOfAccuracy()
 }
 
 PhiTest::PhiTest(std::shared_ptr<ColorConsoleOutput> colorOutput, double viscosity, std::shared_ptr<PhiTestParameterStruct> testPara, std::string dataToCalculate)
-	: TestImp(colorOutput), viscosity(viscosity), dataToCalculate(dataToCalculate)
+	: TestImp(colorOutput), dataToCalculate(dataToCalculate)
 {
 	minOrderOfAccuracy = testPara->minOrderOfAccuracy;
 	startStepCalculation = testPara->startTimeStepCalculation;
@@ -92,7 +92,7 @@ std::vector<std::string> PhiTest::buildTestOutput()
 	std::vector<std::string> output = buildBasicTestOutput();
 	std::ostringstream oss;
 
-	for (int i = 0; i < phiDiff.size(); i++) {
+	for (uint i = 0; i < phiDiff.size(); i++) {
 		oss << "PhiDiff" << simInfos.at(i)->getLx() << ": " << phiDiff.at(i);
 		output.push_back(oss.str());
 		oss.str(std::string());
@@ -125,7 +125,7 @@ std::vector<std::string> PhiTest::buildBasicTestOutput()
 	output.push_back(oss.str());
 	oss.str(std::string());
 
-	for (int i = 0; i < simInfos.size(); i++) {
+	for (uint i = 0; i < simInfos.size(); i++) {
 		oss << "L: " << std::setfill(' ') << std::right << std::setw(4) << simInfos.at(i)->getLx() << simInfos.at(i)->getSimulationParameterString();
 		output.push_back(oss.str());
 		oss.str(std::string());
diff --git a/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.h b/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.h
index 84b1d33896a89834460c9d8495f1e068a2221364..4bf1c02f85e35b9cf1766642b6a0e9b58e6b4d07 100644
--- a/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.h
+++ b/apps/gpu/tests/NumericalTests/Tests/PhiTest/PhiTest.h
@@ -40,7 +40,6 @@ private:
 	std::vector<double> phiDiff;
 	double orderOfAccuracy;
 	double minOrderOfAccuracy;
-	double viscosity;
 	std::string dataToCalculate;
 
 	std::vector<std::shared_ptr<PhiTestPostProcessingStrategy> > postProStrategies;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculator.h b/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculator.h
index 21ab49017188b92a97ea59a53d7ce28e51a694a8..5c90fa1ae0fe1332608d2932f2fa40435bb21fc5 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculator.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculator.h
@@ -8,6 +8,7 @@
 class L2NormCalculator
 {
 public:
+	virtual ~L2NormCalculator() = default;
 	virtual double calc(std::vector<double> basicData, std::vector<double> divergentData, std::vector<unsigned int> level, double lx, double lz, double l0) = 0;
 	virtual std::string getErrorMessage() = 0;
 
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculatorFactory/L2NormCalculatorFactory.h b/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculatorFactory/L2NormCalculatorFactory.h
index 2b13f7ca3ca1337d8cbd7181ce4fc556e831a248..ffd1030cfa2abf8fb8b82699fe209dcf4e2416de 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculatorFactory/L2NormCalculatorFactory.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Calculator/L2NormCalculator/L2NormCalculatorFactory/L2NormCalculatorFactory.h
@@ -9,6 +9,7 @@ class L2NormCalculator;
 class L2NormCalculatorFactory
 {
 public:
+	virtual ~L2NormCalculatorFactory() = default;
 	virtual std::shared_ptr<L2NormCalculator> makeL2NormCalculator(std::string type) = 0;
 
 };
diff --git a/apps/gpu/tests/NumericalTests/Utilities/ColorConsoleOutput/ColorConsoleOutput.h b/apps/gpu/tests/NumericalTests/Utilities/ColorConsoleOutput/ColorConsoleOutput.h
index 73b5dff2a02af7a60d3bccc9df6c0ec90c8c5940..5c9f03658f40e77cdd9d8ce8f82d3cd08e2c02d6 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/ColorConsoleOutput/ColorConsoleOutput.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/ColorConsoleOutput/ColorConsoleOutput.h
@@ -12,6 +12,7 @@ class SimulationInfo;
 class ColorConsoleOutput
 {
 public:
+	virtual ~ColorConsoleOutput() = default;
 	virtual void makeSimulationHeadOutput(std::shared_ptr<SimulationInfo> simInfo) = 0;
 	virtual void makeTestOutput(std::vector<std::string> testOutput, TestStatus status) = 0;
 	virtual void makeFinalTestOutputHead(int numberOfTests, int numberOfExecutedTest, int numberOfPassedTest, int numberOfFailedTest, int numberOfErrorTest, int numberOfNotExecutedTest) = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/DataWriter/AnalyticalResults2DToVTKWriter/AnalyticalResults2DToVTKWriter.h b/apps/gpu/tests/NumericalTests/Utilities/DataWriter/AnalyticalResults2DToVTKWriter/AnalyticalResults2DToVTKWriter.h
index 3af764aeeaa8b6f29831ead54b1f312d3be54e9f..a6e1eecf4a976e8c8e6a34c34f8b1e5e08887fd1 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/DataWriter/AnalyticalResults2DToVTKWriter/AnalyticalResults2DToVTKWriter.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/DataWriter/AnalyticalResults2DToVTKWriter/AnalyticalResults2DToVTKWriter.h
@@ -10,7 +10,7 @@ class AnalyticalResults;
 class AnalyticalResults2DToVTKWriter
 {
 public:
-
+	virtual ~AnalyticalResults2DToVTKWriter() = default;
 	virtual void writeAnalyticalResult(std::shared_ptr<Parameter> para, std::shared_ptr<AnalyticalResults> analyticalResult) = 0;
 
 };
diff --git a/apps/gpu/tests/NumericalTests/Utilities/InitialCondition/InitialCondition.h b/apps/gpu/tests/NumericalTests/Utilities/InitialCondition/InitialCondition.h
index 0735f39696efe134393f6fca66a5d318d59bcb13..1c9b322a29c80c28173d5791adc75e3756f22bbc 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/InitialCondition/InitialCondition.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/InitialCondition/InitialCondition.h
@@ -11,6 +11,7 @@ class Parameter;
 class InitialCondition
 {
 public:
+	virtual ~InitialCondition() = default;
 	virtual void setParameter(std::shared_ptr<Parameter> para) = 0;
 	virtual void init(const int level) = 0;
 	virtual real getInitVX(int i, int level) = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/KernelConfiguration/KernelConfiguration.h b/apps/gpu/tests/NumericalTests/Utilities/KernelConfiguration/KernelConfiguration.h
index dbcb9b003579b34be5f5a6be09154d3762576086..7407fe4cc33da0a929d090a30878b8fe628f03bf 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/KernelConfiguration/KernelConfiguration.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/KernelConfiguration/KernelConfiguration.h
@@ -7,7 +7,8 @@
 class KernelConfiguration
 {
 public:
-    virtual std::string getMainKernel()              = 0;
+    virtual ~KernelConfiguration() = default;
+    virtual std::string getMainKernel() = 0;
 	virtual bool getMultiKernelOn() = 0;
 	virtual	std::vector<int> getMultiKernelLevel() = 0;
     virtual std::vector<std::string> getMultiKernel() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/BasicSimulationInfo/BasicSimulationInfo.h b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/BasicSimulationInfo/BasicSimulationInfo.h
index 20897bc5f8de3c94f7659b67b4ba6bdb3598d958..a8f14cab134f821b5dd46116e2b690779cab8176 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/BasicSimulationInfo/BasicSimulationInfo.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/BasicSimulationInfo/BasicSimulationInfo.h
@@ -12,7 +12,7 @@ public:
 	std::string getOutput();
 
 private:
-	BasicSimulationInfo() {};
+	BasicSimulationInfo() = default;
     BasicSimulationInfo(int numberOfTimeSteps, double viscosity, int basicTimeStepLength, std::string kernel);
 
 	int numberOfTimeSteps;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformation.h b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformation.h
index 6c035169a8d74cd51aa0e94281b2f01bf3b4fc33..b234c86551603df780613da31b07aa5836f528d0 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformation.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformation.h
@@ -1,11 +1,12 @@
 #ifndef LOGFILE_INFORMATION_H
 #define LOGFILE_INFORMATION_H
 
-#include <iostream>
+#include <string>
 
 class LogFileInformation
 {
 public:
+	virtual ~LogFileInformation() = default;
 	virtual std::string getOutput() = 0;
 
 private:
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformationImp.h b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformationImp.h
index 83c4cff969f8910cabdd4ef4f57c8ef3f8fe8925..c89decfe90014d2090a6d9a89ec3b8d79d49ce8d 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformationImp.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/LogFileInformationImp.h
@@ -8,6 +8,7 @@
 class LogFileInformationImp : public LogFileInformation
 {
 public:
+	LogFileInformationImp() = default;
 	virtual std::string getOutput() = 0;
 
 protected:
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/SimulationLogFileInformation/SimulationLogFileInformation.h b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/SimulationLogFileInformation/SimulationLogFileInformation.h
index ce72f8f124a1273e9c2124e2ea30b9a055237733..45a41cc1f43eae3d1fa6fb17457b77a83826e7d6 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/SimulationLogFileInformation/SimulationLogFileInformation.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileInformation/SimulationLogFileInformation/SimulationLogFileInformation.h
@@ -9,6 +9,7 @@
 class SimulationLogFileInformation : public LogFileInformationImp
 {
 public:
+	virtual ~SimulationLogFileInformation() = default;
 	virtual std::string getOutput() = 0;
 
 	virtual std::vector<std::string> getFilePathExtension() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueue.h b/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueue.h
index cb8c413d13769551ef2b9c23592d02f03f14c291..013d553901a93328fbd5f44c0b035ecd24b49d3e 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueue.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueue.h
@@ -1,13 +1,10 @@
 #ifndef LOGFILE_QUEUE_H
 #define LOGFILE_QUEUE_H
 
-#include <memory>
-
-class LogFileWriter;
-
 class LogFileQueue
 {
 public:
+	virtual ~LogFileQueue() = default;
 	virtual void writeLogFiles() = 0;
 
 private:
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.cpp b/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.cpp
index 9decb8a93ccaa3bf8e1b198bb646f4f499ada72f..fa6b0b2b5a6c7e296dd4dc3b9034c027c416cbc5 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.cpp
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.cpp
@@ -13,7 +13,7 @@ std::shared_ptr<LogFileQueueImp> LogFileQueueImp::getNewInstance(std::string bas
 
 void LogFileQueueImp::writeLogFiles()
 {
-	for (int i = 0; i < logFileWriter.size(); i++){
+	for (uint i = 0; i < logFileWriter.size(); i++){
 		logFileWriter.at(i)->writeLogFile(basicLogFilePath);
 	}
 }
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.h b/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.h
index 3fe27faeb0d8f48bf087c76fb8c57c36cb0a4bb1..133924382995d2a91abfbb51185bccdd7fe33e63 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileQueue/LogFileQueueImp.h
@@ -5,17 +5,20 @@
 
 #include <string>
 #include <vector>
+#include <memory>
+
+class LogFileWriter;
 
 class LogFileQueueImp : public LogFileQueue 
 {
 public:
 	static std::shared_ptr<LogFileQueueImp> getNewInstance(std::string basicLogFilePath);
 
-	void writeLogFiles();
+	void writeLogFiles() override;
 	void addLogFileWriter(std::shared_ptr<LogFileWriter> aLogFileWriter);
 
 private:
-	LogFileQueueImp() {};
+	LogFileQueueImp() = default;
 	LogFileQueueImp(std::string basicLogFilePath);
 
 	std::string calcDateAndTime();
diff --git a/apps/gpu/tests/NumericalTests/Utilities/LogFileWriter/LogFileWriter.h b/apps/gpu/tests/NumericalTests/Utilities/LogFileWriter/LogFileWriter.h
index d828256c677e1fece336845de68fb1fc3d3868df..396deec9d1a771fd74e9ca7f3e23910a6c9c7fcb 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/LogFileWriter/LogFileWriter.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/LogFileWriter/LogFileWriter.h
@@ -6,6 +6,7 @@
 class LogFileWriter
 {
 public:
+	virtual ~LogFileWriter() = default;
 	virtual void writeLogFile(std::string basicFilePath) = 0;
 	
 private:
diff --git a/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactory.h b/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactory.h
index b5facb26a1dd1e2e0439a415fae2c692340449fe..d21deb7bda97df58830ec9f4dc3dcb8445915911 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactory.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactory.h
@@ -12,6 +12,7 @@ class LogFileQueue;
 class NumericalTestFactory
 {
 public:
+	virtual ~NumericalTestFactory() = default;
 	virtual std::vector<std::shared_ptr<TestSimulation> > getTestSimulations() = 0;
 	virtual std::shared_ptr<TestQueue> getTestQueue() = 0;
 	virtual std::shared_ptr<LogFileQueue> getLogFileQueue() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactoryImp.h b/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactoryImp.h
index 1d9b33d357406de2e94c6eb7f2ef9a570ce59e21..ff9753a4afde382e48fc8d07a8763f26f4c6b23d 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactoryImp.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/NumericalTestFactory/NumericalTestFactoryImp.h
@@ -93,7 +93,7 @@ private:
 
 	int simID;
 	int numberOfSimulations;
-	int simPerKernel, numberOfTestGroupsBetweenKernels, numberOfTestsForOneSimulation, numberOfTestsBetweenKernels;
-	int posBasicSimulationForL2Test, posDivergentSimulationForL2Test;
+	// int simPerKernel, numberOfTestGroupsBetweenKernels, numberOfTestsForOneSimulation, numberOfTestsBetweenKernels;
+	// int posBasicSimulationForL2Test, posDivergentSimulationForL2Test;
 };
-#endif
\ No newline at end of file
+#endif
diff --git a/apps/gpu/tests/NumericalTests/Utilities/NumericalTestSimulation/NumericalTestSimulation.h b/apps/gpu/tests/NumericalTests/Utilities/NumericalTestSimulation/NumericalTestSimulation.h
index b3835c11bf101c3a0e10beddba0095d0f1f0bef3..0e3c9fcb23964922b8ed155a89ca8c3504aa67fc 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/NumericalTestSimulation/NumericalTestSimulation.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/NumericalTestSimulation/NumericalTestSimulation.h
@@ -10,6 +10,7 @@ enum SimulationStatus { initialized , executed, crashed};
 class NumericalTestSimulation
 {
 public:
+	virtual ~NumericalTestSimulation() = default;
 	virtual void run() = 0;
 	virtual SimulationStatus getSimulationStatus() = 0;
 	virtual void registerSimulationObserver(std::shared_ptr<SimulationObserver> simObserver) = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/PostProcessingStrategy/PostProcessingStrategy.h b/apps/gpu/tests/NumericalTests/Utilities/PostProcessingStrategy/PostProcessingStrategy.h
index 686c2300e75257717820b6bb97554b37493d46e3..e995bd4de187da87bce2cc987ac460138e3ffcb8 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/PostProcessingStrategy/PostProcessingStrategy.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/PostProcessingStrategy/PostProcessingStrategy.h
@@ -10,6 +10,7 @@ class SimulationResults;
 class PostProcessingStrategy
 {
 public:
+	virtual ~PostProcessingStrategy() = default;
 	virtual void evaluate() = 0;
 };
 #endif
\ No newline at end of file
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Results/AnalyticalResults/AnalyticalResult.h b/apps/gpu/tests/NumericalTests/Utilities/Results/AnalyticalResults/AnalyticalResult.h
index 7ed53fce60606e8a91b52330cb87822207f36f94..979c57ec3a2fd2bc26f85d07db06e31169b5aa7a 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Results/AnalyticalResults/AnalyticalResult.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Results/AnalyticalResults/AnalyticalResult.h
@@ -10,6 +10,7 @@ class SimulationResults;
 class AnalyticalResults : public ResultsImp
 {
 public:
+	virtual ~AnalyticalResults() = default;
 	virtual void calc(std::shared_ptr<SimulationResults> simResults) = 0;
 	virtual bool isCalculated() = 0;
 };
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Results/Results.h b/apps/gpu/tests/NumericalTests/Utilities/Results/Results.h
index 264831a96b1df5cf212b033f2a8dc2acfb03ae5a..3744bf591d98769cee398fcfde78dac1d14737ae 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Results/Results.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Results/Results.h
@@ -6,6 +6,7 @@
 class Results
 {
 public:
+	virtual ~Results() = default;
 	virtual int getNumberOfTimeSteps() = 0;
 	virtual std::vector<std::vector<double> > getVx() = 0;
 	virtual std::vector<std::vector<double> > getVy() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/SimulationInfo/SimulationInfo.h b/apps/gpu/tests/NumericalTests/Utilities/SimulationInfo/SimulationInfo.h
index cd0c29e9c41765b3c877fb4830d66d41f5c98ee7..aa49cba4875a6ad2090cdd715da9971b6bec8967 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/SimulationInfo/SimulationInfo.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/SimulationInfo/SimulationInfo.h
@@ -10,6 +10,7 @@ class TimeInfo;
 class SimulationInfo
 {
 public:
+	virtual ~SimulationInfo() = default;
 	virtual std::string getKernelName() = 0;
 	virtual double getViscosity() = 0;
 	virtual std::string getSimulationName() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/SimulationParameter/SimulationParameter.h b/apps/gpu/tests/NumericalTests/Utilities/SimulationParameter/SimulationParameter.h
index b9ca9b2e332f4a7f3a79ca0ffae65f621b942230..7de661ce17d681c88fdeef50aebb56ce9af36202 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/SimulationParameter/SimulationParameter.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/SimulationParameter/SimulationParameter.h
@@ -11,6 +11,7 @@ class KernelConfiguration;
 class SimulationParameter
 {
 public:
+	virtual ~SimulationParameter() = default;
 	virtual std::shared_ptr<KernelConfiguration> getKernelConfiguration() = 0;
 	virtual double getViscosity() = 0;
 	virtual std::string getGridPath() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Test/SimulationObserver.h b/apps/gpu/tests/NumericalTests/Utilities/Test/SimulationObserver.h
index 9cf022b558255ee2dbb3862caf78ccea8c0e1873..ac579cdc97015c16b5bb8cf27ae664c82aa86655 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Test/SimulationObserver.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Test/SimulationObserver.h
@@ -4,6 +4,7 @@
 class SimulationObserver
 {
 public:
+	virtual ~SimulationObserver() = default;
 	virtual void update() = 0;
 
 };
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Test/Test.h b/apps/gpu/tests/NumericalTests/Utilities/Test/Test.h
index c5809671330d2ac5a32f13f3db0d6d3690f06b6f..994bf272eeae9c1d93f15748def233fa0672812c 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Test/Test.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Test/Test.h
@@ -10,8 +10,8 @@
 class Test : public SimulationObserver 
 {
 public:
+	virtual ~Test() = default;
 	virtual void run() = 0;
-	virtual void update() = 0;
 
 	virtual TestStatus getTestStatus() = 0;
 	virtual void makeConsoleOutput() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Test/TestImp.h b/apps/gpu/tests/NumericalTests/Utilities/Test/TestImp.h
index f4fc758ec75f3c0e12b79faf2efb74a2e749e00e..06c2b3013e22f9de7280dc42b86ad2c1974b1b40 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Test/TestImp.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Test/TestImp.h
@@ -16,9 +16,9 @@ class TestImp : public Test
 {
 public:
 	void run() override;
-	void update();
-	TestStatus getTestStatus();
-	virtual void makeConsoleOutput();
+	void update() override;
+	TestStatus getTestStatus() override;
+	void makeConsoleOutput() override;
 
 	void addSimulation(std::shared_ptr<NumericalTestSimulation> sim, std::shared_ptr<SimulationInfo> simInfo, std::shared_ptr<PostProcessingStrategy> postProStrategy);
 		
diff --git a/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueue.h b/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueue.h
index dcc0ece599e45539fd1416b3cd06bb67576a915a..736146d5a9aa3ce295e661fcd0bd3340f0a56ad0 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueue.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueue.h
@@ -6,6 +6,7 @@ enum TestSuiteResult { PASSED, FAILED };
 class TestQueue
 {
 public:
+    virtual ~TestQueue() = default;
     virtual TestSuiteResult run() = 0;
     virtual void makeFinalOutput() = 0;
     virtual int getNumberOfFailedTests() const noexcept = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.cpp b/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.cpp
index c7ceef408bcc7d098810aa0f8fd82498902ee211..f55b932bf8f55b3bbab7983a17646b0826484915 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.cpp
+++ b/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.cpp
@@ -6,7 +6,7 @@
 
 TestSuiteResult TestQueueImp::run()
 {
-    for (const auto test : tests)
+    for (const auto& test : tests)
         test->run();
 
     makeFinalOutput();
@@ -19,7 +19,7 @@ void TestQueueImp::makeFinalOutput()
     calcTestNumbers();
     colorOutput->makeFinalTestOutputHead(numberOfTests, numberOfExecutedTest, numberOfPassedTest, numberOfFailedTest,
                                          numberOfErrorTest, numberOfNotExecutedTest);
-    for (int i = 0; i < tests.size(); i++)
+    for (uint i = 0; i < tests.size(); i++)
         tests.at(i)->makeConsoleOutput();
     colorOutput->makeFinalTestOutputFoot(numberOfTests, numberOfExecutedTest, numberOfPassedTest, numberOfFailedTest,
                                          numberOfErrorTest, numberOfNotExecutedTest);
@@ -54,7 +54,7 @@ void TestQueueImp::calcTestNumbers()
     numberOfErrorTest = 0;
     numberOfNotExecutedTest = 0;
 
-    for (int i = 0; i < tests.size(); i++) {
+    for (uint i = 0; i < tests.size(); i++) {
         switch (tests.at(i)->getTestStatus()) {
             case passed:
                 numberOfPassedTest++;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.h b/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.h
index 89952773f810a983d34f9e35e9508e9d0d7e3ce3..386b5805fb1ff7068ee75e764d6374f2e2fda767 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/TestQueue/TestQueueImp.h
@@ -13,7 +13,7 @@ class TestQueueImp : public TestQueue
 {
 public:
 	TestSuiteResult run() override;
-	void makeFinalOutput();
+	void makeFinalOutput() override;
 
 	int getNumberOfFailedTests() const noexcept override;
 
diff --git a/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulation.h b/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulation.h
index 729ca06a3a57bfc1202d4f93728a68b18a57f8db..1f356304f05b1d08a52ed8c1842959af8f2965c1 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulation.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulation.h
@@ -15,6 +15,7 @@ class Parameter;
 class TestSimulation
 {
 public:
+    virtual ~TestSimulation() = default;
     virtual void run() = 0;
 	virtual void makeSimulationHeadOutput() = 0;
 	virtual void startPostProcessing() = 0;
diff --git a/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.cpp b/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.cpp
index dc4aca9b35b0bea92b3d8e3e5b07cb8ed3e054d5..2dd40ef77149c408e3f8ded6f3a7349761fa3a0b 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.cpp
+++ b/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.cpp
@@ -87,7 +87,7 @@ std::vector<std::string> TestSimulationImp::getDataToCalcTests()
 
 void TestSimulationImp::notifyObserver()
 {
-    for (int i = 0; i < simObserver.size(); i++)
+    for (uint i = 0; i < simObserver.size(); i++)
         simObserver.at(i)->update();
 }
 
diff --git a/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.h b/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.h
index b876cb079f241226bbb3455f7b4bc97b80039131..2a36fda25912ea15f2ee5a8b64d6fe0f7a982180 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/TestSimulation/TestSimulationImp.h
@@ -5,7 +5,7 @@
 #include "Utilities/NumericalTestSimulation/NumericalTestSimulation.h"
 
 #include <functional>
-#include <time.h>
+#include <ctime>
 #include <vector>
 
 class ToVectorWriter;
@@ -28,20 +28,20 @@ public:
                       std::shared_ptr<ColorConsoleOutput> colorOutput);
     void run() override;
 
-    std::shared_ptr<SimulationParameter> getSimulationParameter();
+    std::shared_ptr<SimulationParameter> getSimulationParameter() override;
     std::shared_ptr<SimulationInfo> getSimulationInfo();
-    std::shared_ptr<TimeTracking> getTimeTracking();
+    std::shared_ptr<TimeTracking> getTimeTracking() override;
 
-    SimulationStatus getSimulationStatus();
+    SimulationStatus getSimulationStatus() override;
 
-    void makeSimulationHeadOutput();
-    void startPostProcessing();
+    void makeSimulationHeadOutput() override;
+    void startPostProcessing() override;
 
-    void setParameter(std::shared_ptr<Parameter> para);
+    void setParameter(std::shared_ptr<Parameter> para) override;
 
     std::shared_ptr<SimulationResults> getSimulationResults();
     std::shared_ptr<AnalyticalResults> getAnalyticalResults();
-    void registerSimulationObserver(std::shared_ptr<SimulationObserver> simObserver);
+    void registerSimulationObserver(std::shared_ptr<SimulationObserver> simObserver) override;
     std::vector<std::string> getDataToCalcTests();
 
 private:
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Time/TimeImp.h b/apps/gpu/tests/NumericalTests/Utilities/Time/TimeImp.h
index 87e14e74fb08f6e7f0ceba7923e3adf4db39d455..f6f6c39ef9e641c67af5ae8a7c5af220f68c7c66 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Time/TimeImp.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Time/TimeImp.h
@@ -5,26 +5,26 @@
 #include "TimeTracking.h"
 
 #include <memory>
-#include <time.h>
+#include <ctime>
 
 class TimeImp : public TimeTracking, public TimeInfo
 {
 public:
 	static std::shared_ptr<TimeImp> getNewInstance();
 
-	void setSimulationStartTime();
-	void setSimulationEndTime();
-	void setTestStartTime();
-	void setTestEndTime();
-	void setAnalyticalResultWriteStartTime();
-	void setAnalyticalResultWriteEndTime();
-	void setResultCheckStartTime();
-	void setResultCheckEndTime();
+	void setSimulationStartTime() override;
+	void setSimulationEndTime() override;
+	void setTestStartTime() override;
+	void setTestEndTime() override;
+	void setAnalyticalResultWriteStartTime() override;
+	void setAnalyticalResultWriteEndTime() override;
+	void setResultCheckStartTime() override;
+	void setResultCheckEndTime() override;
 
-	std::string getSimulationTime();
-	std::string getResultCheckTime();
-	std::string getTestTime();
-	std::string getAnalyticalResultWriteTime();
+	std::string getSimulationTime() override;
+	std::string getResultCheckTime() override;
+	std::string getTestTime() override;
+	std::string getAnalyticalResultWriteTime() override;
 
 private:
 	TimeImp();
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Time/TimeInfo.h b/apps/gpu/tests/NumericalTests/Utilities/Time/TimeInfo.h
index 11e49b28406ecf08f83f13cfc5cbe09c3ebd8a84..02cf14c5c6db3de64595e58e51acf6771baa1e21 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Time/TimeInfo.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Time/TimeInfo.h
@@ -6,9 +6,10 @@
 class TimeInfo
 {
 public:
-	virtual std::string getSimulationTime() = 0;
-	virtual std::string getResultCheckTime() = 0;
-	virtual std::string getTestTime() = 0;
-	virtual std::string getAnalyticalResultWriteTime() = 0;
+    virtual ~TimeInfo() = default;
+    virtual std::string getSimulationTime() = 0;
+    virtual std::string getResultCheckTime() = 0;
+    virtual std::string getTestTime() = 0;
+    virtual std::string getAnalyticalResultWriteTime() = 0;
 };
-#endif
\ No newline at end of file
+#endif
diff --git a/apps/gpu/tests/NumericalTests/Utilities/Time/TimeTracking.h b/apps/gpu/tests/NumericalTests/Utilities/Time/TimeTracking.h
index 736ca764116934dc31e18d7d7c910ead554b253b..663456d6a2c0d428f23a373448ac3c93ad19067f 100644
--- a/apps/gpu/tests/NumericalTests/Utilities/Time/TimeTracking.h
+++ b/apps/gpu/tests/NumericalTests/Utilities/Time/TimeTracking.h
@@ -4,6 +4,7 @@
 class TimeTracking
 {
 public:
+	virtual ~TimeTracking() = default;
 	virtual void setSimulationStartTime() = 0;
 	virtual void setSimulationEndTime() = 0;
 
@@ -16,4 +17,4 @@ public:
 	virtual void setAnalyticalResultWriteStartTime() = 0;
 	virtual void setAnalyticalResultWriteEndTime() = 0;
 };
-#endif
\ No newline at end of file
+#endif
diff --git a/regression-tests/multigpu_test/rocket4GPU.yml b/regression-tests/multigpu_test/rocket4GPU.yml
index a05ffea6ad04e0d5cfb8d7749111726dfceb4609..33b7178372f0ce869565e8eee567a75ac8759ee4 100755
--- a/regression-tests/multigpu_test/rocket4GPU.yml
+++ b/regression-tests/multigpu_test/rocket4GPU.yml
@@ -46,6 +46,7 @@ collect:
 
 clean:
   - multigpu_test/output/*
+  - multigpu_test/src/*
 
 sbatch: multigpu_test/slurm4GPU.job
 continue_if_job_fails: true
diff --git a/regression-tests/multigpu_test/rocket8GPU.yml b/regression-tests/multigpu_test/rocket8GPU.yml
index e8cc08a9fa39425686a16d193dba1743533994bc..9c59b4ce52984ad552bb3d32233a4d694589721f 100755
--- a/regression-tests/multigpu_test/rocket8GPU.yml
+++ b/regression-tests/multigpu_test/rocket8GPU.yml
@@ -46,6 +46,7 @@ collect:
 
 clean:
   - multigpu_test/output/*
+  - multigpu_test/src/*
 
 sbatch: multigpu_test/slurm8GPU.job
 continue_if_job_fails: true
diff --git a/src/basics/config/ConfigurationFile.h b/src/basics/config/ConfigurationFile.h
index ecdebf04970d5598db434065b670e791b04b4d5e..6c651b7039d91c7312c4b98f32e1a97b8b6433de 100644
--- a/src/basics/config/ConfigurationFile.h
+++ b/src/basics/config/ConfigurationFile.h
@@ -10,7 +10,7 @@
 #include <string>
 #include <fstream>
 #include <iostream>
-#include <stdlib.h>
+#include <cstdlib>
 
 #include <basics/utilities/UbException.h>
 
diff --git a/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphasePressureBCStrategy.cpp b/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphasePressureBCStrategy.cpp
index d2bb9f083fd433d60e0d1f5054b2238e963d9efc..f85d3c6503fbe645ecef115351c6e8fd11c287d1 100644
--- a/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphasePressureBCStrategy.cpp
+++ b/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphasePressureBCStrategy.cpp
@@ -88,19 +88,6 @@ void MultiphasePressureBCStrategy::applyBC()
    calcMacrosFct(f, p1, vx1, vx2, vx3);
    p1 = 0.0;
 
-   int nx1 = x1;
-   int nx2 = x2;
-   int nx3 = x3;
-
-   //flag points in direction of fluid
-   if      (bcPtr->hasVelocityBoundaryFlag(DIR_P00)) { nx1 -= 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_M00)) { nx1 += 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_0P0)) { nx2 -= 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_0M0)) { nx2 += 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_00P)) { nx3 -= 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_00M)) { nx3 += 1; }
-   //else UB_THROW(UbException(UB_EXARGS, "Danger...no orthogonal BC-Flag on velocity boundary..."));
-   
    phiBC = bcPtr->getBoundaryPhaseField();
    LBMReal rhoBC = bcPtr->getBoundaryDensity();
    D3Q27System::calcIncompFeq(feq, rhoBC, vx1, vx2, vx3);
diff --git a/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBC.h b/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBC.h
index e01237cf96e14bffbbfeac43469d32c907d56dd7..8618d797245a641b8c6ce7fc30fee46a3bfeed22 100644
--- a/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBC.h
+++ b/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBC.h
@@ -79,8 +79,8 @@ class UbFileInput;
 //! \code{.cpp}
 //!    mu::Parser fct;
 //!    fct.SetExpr("max(vmax*(1.0-4.0*((x2-x2_vmax)^2+(x3-x3_vmax)^2)/H^2),0.0)"); //paraboloid (with vmax for
-//!    (0/x2_vmax/x3_vmax) fct.DefineConst("x2Vmax", 0.0            ); //x2-Pos für vmax fct.DefineConst("x3Vmax", 0.0
-//!    ); //x3-Pos für vmax fct.DefineConst("H"     , diameterOfPipe); fct.DefineConst("vmax"  , vmax           );
+//!    (0/x2_vmax/x3_vmax) fct.DefineConst("x2Vmax", 0.0            ); //x2-Pos for vmax fct.DefineConst("x3Vmax", 0.0
+//!    ); //x3-Pos for vmax fct.DefineConst("H"     , diameterOfPipe); fct.DefineConst("vmax"  , vmax           );
 //!    VelocityBC velBC(true, false ,false ,fct, 0, BCFunction::INFCONST);
 //! \endcode 
 
diff --git a/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBCStrategy.cpp b/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBCStrategy.cpp
index a9b8391a8296fbbaf2709bb36863880985790a45..a0b334d8ee7a88471ca3e5c640e04a914f4171bd 100644
--- a/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBCStrategy.cpp
+++ b/src/cpu/MultiphaseFlow/BoundaryConditions/MultiphaseVelocityBCStrategy.cpp
@@ -95,19 +95,6 @@ void MultiphaseVelocityBCStrategy::applyBC()
 
    ///// added for phase field //////
 
-   int nx1 = x1;
-   int nx2 = x2;
-   int nx3 = x3;
-
-   //flag points in direction of fluid
-   if      (bcPtr->hasVelocityBoundaryFlag(DIR_P00)) { nx1 -= 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_M00)) { nx1 += 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_0P0)) { nx2 -= 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_0M0)) { nx2 += 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_00P)) { nx3 -= 1; }
-   else if (bcPtr->hasVelocityBoundaryFlag(DIR_00M)) { nx3 += 1; }
-   //else UB_THROW(UbException(UB_EXARGS, "Danger...no orthogonal BC-Flag on velocity boundary..."));
-   
    phiBC = bcPtr->getBoundaryPhaseField();
    
    D3Q27System::calcMultiphaseHeq(htemp, phiBC, vx1, vx2, vx3);
diff --git a/src/cpu/MultiphaseFlow/LBM/MultiphaseScaleDistributionLBMKernel.cpp b/src/cpu/MultiphaseFlow/LBM/MultiphaseScaleDistributionLBMKernel.cpp
index f898f2543a0bf3fec74b84d7cf62dbf76195a0c2..362c8c68be02430dee683287140dd951bb3eb715 100644
--- a/src/cpu/MultiphaseFlow/LBM/MultiphaseScaleDistributionLBMKernel.cpp
+++ b/src/cpu/MultiphaseFlow/LBM/MultiphaseScaleDistributionLBMKernel.cpp
@@ -717,16 +717,16 @@ void MultiphaseScaleDistributionLBMKernel::calculate(int step)
 
 								real sum2 = 1e-100;
 								real sumRho = 0;
-								real sumVx = 0;
-								real sumVy = 0;
-								real sumVz = 0;
+								// real sumVx = 0;
+								// real sumVy = 0;
+								// real sumVz = 0;
 								for (int fdir = D3Q27System::FSTARTDIR; fdir <= D3Q27System::FENDDIR; fdir++) {
 									if ((phi[fdir] > c1o2)) {
 
 										sumRho += WEIGTH[fdir] * (*rhoNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);// * tempRho;
-										sumVx += WEIGTH[fdir] * (*vxNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
-										sumVy += WEIGTH[fdir] * (*vyNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
-										sumVz += WEIGTH[fdir] * (*vzNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
+										// sumVx += WEIGTH[fdir] * (*vxNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
+										// sumVy += WEIGTH[fdir] * (*vyNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
+										// sumVz += WEIGTH[fdir] * (*vzNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
 										sum2 += WEIGTH[fdir];
 									}
 								}
@@ -3559,12 +3559,12 @@ void MultiphaseScaleDistributionLBMKernel::calculate(int step)
 					real mxxMzz = mfcaa - mfaac;
 
 					///
-					real mmfcaa = c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz);
-					real mmfaca = c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz);
-					real mmfaac = c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz);
-					real mmfabb = mfabb;
-					real mmfbab = mfbab;
-					real mmfbba = mfbba;
+					// real mmfcaa = c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz);
+					// real mmfaca = c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz);
+					// real mmfaac = c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz);
+					// real mmfabb = mfabb;
+					// real mmfbab = mfbab;
+					// real mmfbba = mfbba;
 					///
 
 					real dxux = -c1o2 * collFactorM * (mxxMyy + mxxMzz) + c1o2 * OxxPyyPzz * (/*mfaaa*/ -mxxPyyPzz);// *0;
@@ -3670,12 +3670,12 @@ void MultiphaseScaleDistributionLBMKernel::calculate(int step)
 					real mxyyPxzz = mfbca + mfbac;
 					real mxyyMxzz = mfbca - mfbac;
 
-					 mmfcaa += c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
-					 mmfaca += c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
-					 mmfaac += c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz- mfaaa);
-					 mmfabb += mfabb;
-					 mmfbab += mfbab;
-					 mmfbba += mfbba;
+					//  mmfcaa += c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
+					//  mmfaca += c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
+					//  mmfaac += c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz- mfaaa);
+					//  mmfabb += mfabb;
+					//  mmfbab += mfbab;
+					//  mmfbba += mfbba;
 
 					//relax
 					wadjust = Oxyz + (1. - Oxyz) * fabs(mfbbb) / (fabs(mfbbb) + qudricLimit);
diff --git a/src/cpu/MultiphaseFlow/LBM/MultiphaseSharpInterfaceLBMKernel.cpp b/src/cpu/MultiphaseFlow/LBM/MultiphaseSharpInterfaceLBMKernel.cpp
index af5ba7d63edbf3a8a1866a70d6edc30920664cb1..1d0e30aee4eb9d9fb7f692b855eb36449e08a500 100644
--- a/src/cpu/MultiphaseFlow/LBM/MultiphaseSharpInterfaceLBMKernel.cpp
+++ b/src/cpu/MultiphaseFlow/LBM/MultiphaseSharpInterfaceLBMKernel.cpp
@@ -549,16 +549,16 @@ void MultiphaseSharpInterfaceLBMKernel::calculate(int step)
 
 								real sum2 = 1e-100;
 								real sumRho = 0;
-								real sumVx = 0;
-								real sumVy = 0;
-								real sumVz = 0;
+								// real sumVx = 0;
+								// real sumVy = 0;
+								// real sumVz = 0;
 								for (int fdir = D3Q27System::FSTARTDIR; fdir <= D3Q27System::FENDDIR; fdir++) {
 									if ((phi[fdir] > c1o2)) {
 
 										sumRho += WEIGTH[fdir] * (*rhoNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);// * tempRho;
-										sumVx += WEIGTH[fdir] * (*vxNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
-										sumVy += WEIGTH[fdir] * (*vyNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
-										sumVz += WEIGTH[fdir] * (*vzNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
+										// sumVx += WEIGTH[fdir] * (*vxNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
+										// sumVy += WEIGTH[fdir] * (*vyNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
+										// sumVz += WEIGTH[fdir] * (*vzNode)(x1 + D3Q27System::DX1[fdir], x2 + D3Q27System::DX2[fdir], x3 + D3Q27System::DX3[fdir]);
 										sum2 += WEIGTH[fdir];
 									}
 								}
@@ -902,12 +902,12 @@ void MultiphaseSharpInterfaceLBMKernel::calculate(int step)
 					real mxxMzz = mfcaa - mfaac;
 
 					///
-					real mmfcaa = c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz);
-					real mmfaca = c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz);
-					real mmfaac = c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz);
-					real mmfabb = mfabb;
-					real mmfbab = mfbab;
-					real mmfbba = mfbba;
+					// real mmfcaa = c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz);
+					// real mmfaca = c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz);
+					// real mmfaac = c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz);
+					// real mmfabb = mfabb;
+					// real mmfbab = mfbab;
+					// real mmfbba = mfbba;
 					///
 
 					real dxux =  -c1o2 * collFactorM * (mxxMyy + mxxMzz) + c1o2 * OxxPyyPzz * (/*mfaaa*/ -mxxPyyPzz)*0;
@@ -982,12 +982,12 @@ void MultiphaseSharpInterfaceLBMKernel::calculate(int step)
 					real mxyyPxzz = mfbca + mfbac;
 					real mxyyMxzz = mfbca - mfbac;
 
-					 mmfcaa += c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
-					 mmfaca += c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
-					 mmfaac += c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz- mfaaa);
-					 mmfabb += mfabb;
-					 mmfbab += mfbab;
-					 mmfbba += mfbba;
+					//  mmfcaa += c1o3 * (mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
+					//  mmfaca += c1o3 * (-2. * mxxMyy + mxxMzz + mxxPyyPzz- mfaaa);
+					//  mmfaac += c1o3 * (mxxMyy - 2. * mxxMzz + mxxPyyPzz- mfaaa);
+					//  mmfabb += mfabb;
+					//  mmfbab += mfbab;
+					//  mmfbba += mfbba;
 
 					//relax
 					wadjust = Oxyz + (1. - Oxyz) * fabs(mfbbb) / (fabs(mfbbb) + qudricLimit);
diff --git a/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.cpp b/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.cpp
index 008adefd8196c6d6689316d29bbc2f3fe50b9f9e..eb254160395ce1ba12e22bc6ff6d6e063ce8f316 100644
--- a/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.cpp
+++ b/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.cpp
@@ -28,7 +28,7 @@
 //
 //! \file SlipBC.cpp
 //! \ingroup BoundarConditions
-//! \author Sören Freudiger
+//! \author Soeren Freudiger
 //=======================================================================================
 #include "SlipBC.h"
 #include "D3Q27Interactor.h"
diff --git a/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.h b/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.h
index 98205ba32b2d3ccec85346bd89a199e8e9a9049c..8e8788db8ded7a2f9eb0e47135f9babbc69e37da 100644
--- a/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.h
+++ b/src/cpu/VirtualFluidsCore/BoundaryConditions/SlipBC.h
@@ -28,7 +28,7 @@
 //
 //! \file SlipBC.h
 //! \ingroup BoundarConditions
-//! \author Sören Freudiger
+//! \author Soeren Freudiger
 //=======================================================================================
 #ifndef SlipBC_H
 #define SlipBC_H
diff --git a/src/cpu/VirtualFluidsCore/Interactors/D3Q27TriFaceMeshInteractor.cpp b/src/cpu/VirtualFluidsCore/Interactors/D3Q27TriFaceMeshInteractor.cpp
index e8746ffda6e2b44d004b0d33136779be405b5a28..c30a4cc8ceab72accc75238ea1535e923b3a3bee 100644
--- a/src/cpu/VirtualFluidsCore/Interactors/D3Q27TriFaceMeshInteractor.cpp
+++ b/src/cpu/VirtualFluidsCore/Interactors/D3Q27TriFaceMeshInteractor.cpp
@@ -233,7 +233,6 @@ void D3Q27TriFaceMeshInteractor::setQs(const real &timeStep)
     // notwendige variablen initialisieren (u.a. blockDeltas des groben levels)
     float triPoints[3][3];
     float vx1 = 0.0, vx2 = 0.0, vx3 = 0.0;
-    unsigned counterTriBoxOverlap = 0, counterAABBTriFace = 0, counterHalfspace = 0, counterBilligOBB = 0;
     std::vector<GbTriFaceMesh3D::TriFace> &triangles = *mesh->getTriangles();
     std::vector<GbTriFaceMesh3D::Vertex> &nodes      = *mesh->getNodes();
     std::map<SPtr<Block3D>, std::set<UbTupleInt3>> tmpSolidNodesFromOtherInteractors;
@@ -341,7 +340,6 @@ void D3Q27TriFaceMeshInteractor::setQs(const real &timeStep)
 
                 // wenn dreieck "vergroesserten cube" nicht schneidet/beruehrt -> keine BC moeglich -> continue
                 if (!GbMeshTools3D::triBoxOverlap(boxCenter, halfBoxSize, triPoints)) {
-                    counterTriBoxOverlap++;
                     continue;
                 }
 
@@ -396,7 +394,6 @@ void D3Q27TriFaceMeshInteractor::setQs(const real &timeStep)
                             bool pointIsOnBoundary = true;
                             if (!boundingCubeTriangle.isPointInGbObject3D(internX1, internX2, internX3,
                                                                           pointIsOnBoundary)) {
-                                counterAABBTriFace++;
                                 continue;
                             }
                             // std::cout<<"internX3  "<<internX3<<"  internX2"<<internX2<<" internX1 "<<internX1<<"\n";
@@ -408,13 +405,11 @@ void D3Q27TriFaceMeshInteractor::setQs(const real &timeStep)
                             if (useHalfSpace &&
                                 UbMath::less(distance, 0.0)) //== !halfSpace.ptInside(internX1,internX2,internX3) )
                             {
-                                counterHalfspace++;
                                 continue;
                             }
 
                             // BilligOBB-Test: wenn distance > qEinflussDelta -> kein q
                             if (UbMath::greater(fabs(distance), qEinflussDelta)) {
-                                counterBilligOBB++;
                                 continue;
                             }
 
@@ -1050,7 +1045,6 @@ void D3Q27TriFaceMeshInteractor::initInteractor2(const real &timeStep)
                                         // SG 26.08.2010 if(!bc && !bcMatrix->isSolid())
                                         if (!bc) {
                                             bc = SPtr<BoundaryConditions>(new BoundaryConditions);
-                                            ;
                                             bcMatrix->setBC(ix1, ix2, ix3, bc);
                                         } else if (UbMath::less(bc->getQ(fdir), q)) // schon ein kuerzeres q voehanden?
                                         {
@@ -1120,7 +1114,7 @@ void D3Q27TriFaceMeshInteractor::initInteractor2(const real &timeStep)
     UBLOG(logDEBUG1, "       * rejected nodes  with halfspace      test : " << counterHalfspace);
     UBLOG(logDEBUG1, "       * rejected nodes  with OBB            test : " << counterBilligOBB);
 
-    typedef std::map<SPtr<Block3D>, SolidCheckMethod>::iterator BlockSolidCheckMethodIterator;
+    using BlockSolidCheckMethodIterator = std::map<SPtr<Block3D>, SolidCheckMethod>::iterator;
 
     //////////////////////////////////////////////////////////////////////////
     // SOLID checks
diff --git a/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.cpp b/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.cpp
index 51d74e3bf1b5d5109904e1fa581bcff366fad505..a2da1904ecbfda60be9139aa9ded1cb1b5efc15f 100644
--- a/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.cpp
+++ b/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.cpp
@@ -17,8 +17,6 @@ MetisPartitioner::MetisPartitioner()
     // options[METIS_OPTION_IPTYPE] = METIS_IPTYPE_GROW;
 }
 //////////////////////////////////////////////////////////////////////////
-MetisPartitioner::~MetisPartitioner() = default;
-//////////////////////////////////////////////////////////////////////////
 idx_t *MetisPartitioner::getMetisOptions() { return options; }
 void MetisPartitioner::setMetisOptions(int option, idx_t value) { options[option] = value; }
 //////////////////////////////////////////////////////////////////////////
diff --git a/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.h b/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.h
index 8fd7a82d52e1ac4c7199d5b2e1a1cbe43ea25369..18e222760bf4a0c93db17ea6fa96a6afdf7f3313 100644
--- a/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.h
+++ b/src/cpu/VirtualFluidsCore/Parallel/MetisPartitioner.h
@@ -10,7 +10,6 @@
 
 #if defined VF_METIS
 
-#include "basics/utilities/UbLogger.h"
 #include "basics/utilities/UbSystem.h"
 #include "metis.h"
 #include <PointerDefinitions.h>
@@ -24,7 +23,6 @@ public:
 
 public:
     MetisPartitioner();
-    virtual ~MetisPartitioner();
     idx_t *getMetisOptions();
     void setMetisOptions(int option, idx_t value);
     int partition(int nofParts, PartType ptype);
@@ -47,9 +45,9 @@ public:
     real_t *
         ubvec; // This is an array of size ncon that specifies the allowed load imbalance tolerance for each constraint.
     // For the ith partition and jth constraint the allowed weight is the ubvec[j]*tpwgts[i*ncon+j] fraction
-    // of the jth’s constraint total weight. The load imbalances must be greater than 1.0.
+    // of the jths constraint total weight. The load imbalances must be greater than 1.0.
     // A NULL value can be passed indicating that the load imbalance tolerance for each constraint should
-    // be 1.001 (for ncon=1) or 1.01 (for ncon¿1).
+    // be 1.001 (for ncon=1) or 1.01 (for ncon1).
 
     std::vector<idx_t>
         part; // This is a vector of size n that upon successful completion stores the partition vector of the graph.
diff --git a/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationBESimulationObserver.cpp b/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationBESimulationObserver.cpp
index ef220856838baabadb3b8cf40270d0e505147069..5cdc87c6867c5ec2a8676e66a228ba5e768014fb 100644
--- a/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationBESimulationObserver.cpp
+++ b/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationBESimulationObserver.cpp
@@ -130,7 +130,6 @@ void MPIIOMigrationBESimulationObserver::writeDataSet(int step)
     DSArraysPresence arrPresence;
     bool firstBlock        = true;
     int doubleCountInBlock = 0;
-    int ic                 = 0;
     SPtr<D3Q27EsoTwist3DSplittedVector> D3Q27EsoTwist3DSplittedVectorPtrF = 0, D3Q27EsoTwist3DSplittedVectorPtrH1 = 0, D3Q27EsoTwist3DSplittedVectorPtrH2 = 0;
     CbArray4D<real, IndexerX4X3X2X1>::CbArray4DPtr localDistributionsF = 0, localDistributionsH1 = 0, localDistributionsH2 = 0;
     CbArray4D<real, IndexerX4X3X2X1>::CbArray4DPtr nonLocalDistributionsF = 0, nonLocalDistributionsH1 = 0, nonLocalDistributionsH2 = 0;
@@ -280,8 +279,6 @@ void MPIIOMigrationBESimulationObserver::writeDataSet(int step)
                 if (zeroDistributionsH2 && (dataSetParamStr3.nx[0] > 0) && (dataSetParamStr3.nx[1] > 0) && (dataSetParamStr3.nx[2] > 0))
                 doubleValuesArrayH2.insert(doubleValuesArrayH2.end(), zeroDistributionsH2->getDataVector().begin(), zeroDistributionsH2->getDataVector().end());
             }
-
-            ic++;
         }
     }
 
@@ -431,7 +428,6 @@ void MPIIOMigrationBESimulationObserver::write4DArray(int step, Arrays arrayType
     dataSetParam dataSetParamStr;
     bool firstBlock        = true;
     int doubleCountInBlock = 0;
-    int ic                 = 0;
     SPtr<CbArray4D<real, IndexerX4X3X2X1>> ___Array;
 
     if (comm->isRoot()) 
@@ -482,8 +478,6 @@ void MPIIOMigrationBESimulationObserver::write4DArray(int step, Arrays arrayType
 
             if ((dataSetParamStr.nx[0] > 0) && (dataSetParamStr.nx[1] > 0) && (dataSetParamStr.nx[2] > 0) && (dataSetParamStr.nx[3] > 0))
                 doubleValuesArray.insert(doubleValuesArray.end(), ___Array->getDataVector().begin(), ___Array->getDataVector().end());
-
-            ic++;
         }
     }
 
@@ -550,7 +544,6 @@ void MPIIOMigrationBESimulationObserver::write3DArray(int step, Arrays arrayType
     dataSetParam dataSetParamStr;
     bool firstBlock        = true;
     int doubleCountInBlock = 0;
-    int ic                 = 0;
     SPtr<CbArray3D<real, IndexerX3X2X1>> ___Array;
 
     if (comm->isRoot()) 
@@ -599,8 +592,6 @@ void MPIIOMigrationBESimulationObserver::write3DArray(int step, Arrays arrayType
 
             if ((dataSetParamStr.nx[0] > 0) && (dataSetParamStr.nx[1] > 0) && (dataSetParamStr.nx[2] > 0))
                 doubleValuesArray.insert(doubleValuesArray.end(), ___Array->getDataVector().begin(), ___Array->getDataVector().end());
-
-            ic++;
         }
     }
 
@@ -659,8 +650,6 @@ void MPIIOMigrationBESimulationObserver::writeBoundaryConds(int step)
 
     int blocksCount          = 0; // quantity of blocks, that belong to this process
     size_t allBytesCount     = 0; // quantity of bytes, that one process writes to the file
-    size_t count_boundCond   = 0; // how many BoundaryConditions in all blocks
-    int count_indexContainer = 0; // how many indexContainer-values in all blocks
 
     std::vector<SPtr<Block3D>> blocksVector[25];
     int minInitLevel = this->grid->getCoarsestInitializedLevel();
@@ -721,7 +710,6 @@ void MPIIOMigrationBESimulationObserver::writeBoundaryConds(int step)
 
                 bcVector[ic].push_back(*bouCond);
                 bcAddArray[ic].boundCond_count++;
-                count_boundCond++;
                 bytesCount[ic] += sizeof(BoundaryCondition);
             }
 
@@ -738,7 +726,6 @@ void MPIIOMigrationBESimulationObserver::writeBoundaryConds(int step)
 
             indexContainerVector[ic].insert(indexContainerVector[ic].begin(), bcArr->indexContainer.begin(), bcArr->indexContainer.end());
             bcAddArray[ic].indexContainer_count = static_cast<int>(bcArr->indexContainer.size());
-            count_indexContainer += bcAddArray[ic].indexContainer_count;
             bytesCount[ic] += bcAddArray[ic].indexContainer_count * sizeof(int);
 
             allBytesCount += bytesCount[ic];
diff --git a/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationSimulationObserver.cpp b/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationSimulationObserver.cpp
index 32e6ba5188626c0a37fba8e9db0ad4447502d001..860b3f02ab1db6c1554ca9f87069281520100bd6 100644
--- a/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationSimulationObserver.cpp
+++ b/src/cpu/VirtualFluidsCore/SimulationObservers/MPIIOMigrationSimulationObserver.cpp
@@ -730,8 +730,6 @@ void MPIIOMigrationSimulationObserver::writeBoundaryConds(int step)
 
     int blocksCount          = 0; // quantity of blocks, that belong to this process
     size_t allBytesCount     = 0; // quantity of bytes, that one process writes to the file
-    size_t count_boundCond   = 0; // how many BoundaryConditions in all blocks
-    int count_indexContainer = 0; // how many indexContainer-values in all blocks
 
     std::vector<SPtr<Block3D>> blocksVector[25];
     int minInitLevel = this->grid->getCoarsestInitializedLevel();
@@ -793,7 +791,6 @@ void MPIIOMigrationSimulationObserver::writeBoundaryConds(int step)
 
                 bcVector[ic].push_back(*bouCond);
                 bcAddArray[ic].boundCond_count++;
-                count_boundCond++;
                 bytesCount[ic] += sizeof(BoundaryCondition);
             }
 
@@ -810,7 +807,6 @@ void MPIIOMigrationSimulationObserver::writeBoundaryConds(int step)
 
             indexContainerVector[ic].insert(indexContainerVector[ic].begin(), bcArr->indexContainer.begin(), bcArr->indexContainer.end());
             bcAddArray[ic].indexContainer_count = static_cast<int>(bcArr->indexContainer.size());
-            count_indexContainer += bcAddArray[ic].indexContainer_count;
             bytesCount[ic] += bcAddArray[ic].indexContainer_count * sizeof(int);
 
             allBytesCount += bytesCount[ic];
@@ -1505,8 +1501,8 @@ void MPIIOMigrationSimulationObserver::readBoundaryConds(int step)
 
             block1->getKernel()->setBCSet(bcProc);
 
-            delete bcArray;
-            delete intArray1;
+            delete[] bcArray;
+            delete[] intArray1;
 
             ic++;
         }
diff --git a/src/cpu/VirtualFluidsCore/SimulationObservers/QCriterionSimulationObserver.cpp b/src/cpu/VirtualFluidsCore/SimulationObservers/QCriterionSimulationObserver.cpp
index 010d9ff664e22519ceb169c549ecc05307655ed4..f94b1b4472e894eb8cb975f9013b6d2aabb5214a 100644
--- a/src/cpu/VirtualFluidsCore/SimulationObservers/QCriterionSimulationObserver.cpp
+++ b/src/cpu/VirtualFluidsCore/SimulationObservers/QCriterionSimulationObserver.cpp
@@ -214,13 +214,13 @@ void QCriterionSimulationObserver::getNeighborVelocities(int offx, int offy, int
     //	int minX3 = 0;
 
     int maxX1 = (int)(distributions->getNX1());
-    int maxX2 = (int)(distributions->getNX2());
-    int maxX3 = (int)(distributions->getNX3());
+    // int maxX2 = (int)(distributions->getNX2());
+    // int maxX3 = (int)(distributions->getNX3());
     if (maxX1 < 3)
         throw UbException(UB_EXARGS, "QCriterionSimulationObserver: NX1 too small for FD stencils!");
     maxX1 -= 2;
-    maxX2 -= 2;
-    maxX3 -= 2;
+    // maxX2 -= 2;
+    // maxX3 -= 2;
     bool checkInterpolation = true;
     bool neighNodeIsBC      = false;
     SPtr<BoundaryConditions> bcPtr;
diff --git a/src/cpu/VirtualFluidsCore/Visitors/Block3DVisitor.h b/src/cpu/VirtualFluidsCore/Visitors/Block3DVisitor.h
index 0c3adfb893bef12351c686e88bf907ecf6e12d99..2996ceeece9710079e898d02b0cceff447479d39 100644
--- a/src/cpu/VirtualFluidsCore/Visitors/Block3DVisitor.h
+++ b/src/cpu/VirtualFluidsCore/Visitors/Block3DVisitor.h
@@ -34,7 +34,7 @@
 #ifndef Block3DVisitor_h
 #define Block3DVisitor_h
 
-#include <PointerDefinitions.h>
+#include <basics/PointerDefinitions.h>
 
 class Block3D;
 class Grid3D;
diff --git a/src/cpu/VirtualFluidsCore/Visitors/SetUndefinedNodesBlockVisitor.h b/src/cpu/VirtualFluidsCore/Visitors/SetUndefinedNodesBlockVisitor.h
index 329662ec8aeb6405c8f8f4b06645c9d1500a59e6..17fa5b2ebb2b7230955e9ce4209a3cb341369326 100644
--- a/src/cpu/VirtualFluidsCore/Visitors/SetUndefinedNodesBlockVisitor.h
+++ b/src/cpu/VirtualFluidsCore/Visitors/SetUndefinedNodesBlockVisitor.h
@@ -1,7 +1,7 @@
 #ifndef SetUndefinedNodesBlockVisitor_h
 #define SetUndefinedNodesBlockVisitor_h
 
-#include <PointerDefinitions.h>
+#include <basics/PointerDefinitions.h>
 
 #include "Block3DVisitor.h"
 
diff --git a/src/gpu/GridGenerator/geometries/TriangularMesh/TriangularMeshStrategy.cpp b/src/gpu/GridGenerator/geometries/TriangularMesh/TriangularMeshStrategy.cpp
index f66b216525253d26d0402c08ec89131130245ca0..6d12a19cc097c0b8e98c59a938380be97dc0b15c 100644
--- a/src/gpu/GridGenerator/geometries/TriangularMesh/TriangularMeshStrategy.cpp
+++ b/src/gpu/GridGenerator/geometries/TriangularMesh/TriangularMeshStrategy.cpp
@@ -124,10 +124,6 @@ void RayCastingDiscretizationStrategy::doDiscretize(TriangularMesh* triangularMe
             }
         }
 
-
-
-        int counter = 0;
-
         // Test line intersection
         for (z = minZ; z <= maxZ; z += grid->getDelta())
         {
@@ -135,7 +131,6 @@ void RayCastingDiscretizationStrategy::doDiscretize(TriangularMesh* triangularMe
             {
                 for (x = minX; x <= maxX; x += grid->getDelta())
                 {
-                    counter++;
                     if (mesh->intersectLine((x - grid->getDelta()), y, z, x, y, z)) 
                         break;
                     grid->setNodeTo(grid->transCoordToIndex(x, y, z), OuterType);
@@ -152,7 +147,6 @@ void RayCastingDiscretizationStrategy::doDiscretize(TriangularMesh* triangularMe
                 {
                     if (!grid->isNode(grid->transCoordToIndex(x, y, z), OuterType))
                     {
-                        counter++;
                         if (mesh->intersectLine((x + grid->getDelta()), y, z, x, y, z))
                             break;
                         grid->setNodeTo(grid->transCoordToIndex(x, y, z), OuterType);
@@ -170,7 +164,6 @@ void RayCastingDiscretizationStrategy::doDiscretize(TriangularMesh* triangularMe
                 {
                     if (!grid->isNode(grid->transCoordToIndex(x, y, z), OuterType))
                     {
-                        counter++;
                         if (mesh->intersectLine(x, (y - grid->getDelta()), z, x, y, z)) 
                             break;
                         grid->setNodeTo(grid->transCoordToIndex(x, y, z), OuterType);
@@ -188,7 +181,6 @@ void RayCastingDiscretizationStrategy::doDiscretize(TriangularMesh* triangularMe
                 {
                     if (!grid->isNode(grid->transCoordToIndex(x, y, z), OuterType))
                     {
-                        counter++;
                         if (mesh->intersectLine(x, (y + grid->getDelta()), z, x, y, z))
                             break;
                         grid->setNodeTo(grid->transCoordToIndex(x, y, z), OuterType);
@@ -206,7 +198,6 @@ void RayCastingDiscretizationStrategy::doDiscretize(TriangularMesh* triangularMe
                 {
                     if (!grid->isNode(grid->transCoordToIndex(x, y, z), OuterType))
                     {
-                        counter++;
                         if (mesh->intersectLine(x, y, (z - grid->getDelta()), x, y, z)) 
                             break;
                         grid->setNodeTo(grid->transCoordToIndex(x, y, z), OuterType);
@@ -224,7 +215,6 @@ void RayCastingDiscretizationStrategy::doDiscretize(TriangularMesh* triangularMe
                 {
                     if (!grid->isNode(grid->transCoordToIndex(x, y, z), OuterType))
                     {
-                        counter++;
                         if (mesh->intersectLine(x, y, (z + grid->getDelta()), x, y, z)) 
                             break;
                         grid->setNodeTo(grid->transCoordToIndex(x, y, z), OuterType);
diff --git a/src/gpu/GridGenerator/io/STLReaderWriter/STLReader.cpp b/src/gpu/GridGenerator/io/STLReaderWriter/STLReader.cpp
index d73adc73eeffce56397829c115def5bfd1d8bc59..669d7fb258759266b06a5cc214befdb3f1a6ec29 100644
--- a/src/gpu/GridGenerator/io/STLReaderWriter/STLReader.cpp
+++ b/src/gpu/GridGenerator/io/STLReaderWriter/STLReader.cpp
@@ -217,7 +217,7 @@ std::vector<Triangle> STLReader::readBinarySTL(const std::string& name)
 
     char nTri[4];
     sizef                  = fread(nTri, sizeof(char), 4, file);
-    unsigned long nTriLong = *((unsigned long*)nTri);
+    unsigned int nTriLong = *((unsigned int*)nTri);
     VF_LOG_INFO("Number of Triangles: {}" , nTriLong);
     std::vector<Triangle> triangles;
 
@@ -309,7 +309,7 @@ std::vector<Triangle> STLReader::readBinarySTL(const BoundingBox &box, const std
 
 
     sizef    = fread(nTri, sizeof(char), 4, file);
-    nTriLong = *((unsigned long*)nTri);
+    nTriLong = *((unsigned int*)nTri);
 
     VF_LOG_INFO("Number of Triangles complete geometry: {}", nTriLong);
     std::vector<Triangle> triangles;
diff --git a/src/gpu/GridGenerator/io/SimulationFileWriter/SimulationFileWriter.cpp b/src/gpu/GridGenerator/io/SimulationFileWriter/SimulationFileWriter.cpp
index eb7e6b22e160de4fedb5832be807dabf36531c9c..d3a467b0511f7f4b40d06b4c6d9b57ff09b9694a 100644
--- a/src/gpu/GridGenerator/io/SimulationFileWriter/SimulationFileWriter.cpp
+++ b/src/gpu/GridGenerator/io/SimulationFileWriter/SimulationFileWriter.cpp
@@ -479,8 +479,8 @@ void SimulationFileWriter::addShortQsToVector(int index, std::vector<std::vector
         }
     }
     if (qKey > 0) {
-        real transportKey = *((real*)&qKey);
-        qNode.push_back(transportKey);
+        float transportKey = *((float*)&qKey);
+        qNode.push_back((real)transportKey);
         qNode.push_back((real)index);
         qs[GEOMQS].push_back(qNode);
     }
@@ -522,8 +522,8 @@ void SimulationFileWriter::fillRBForNode(int index, int direction, int direction
         qNode.push_back(0.5f);
     }
     if (qKey > 0) {
-        real transportKey = *((real*)&qKey);
-        qNode.push_back(transportKey);
+        float transportKey = *((float*)&qKey);
+        qNode.push_back((real)transportKey);
         qNode.push_back((real)index);
         qs[rb].push_back(qNode);
     }
diff --git a/src/gpu/VirtualFluids_GPU/Calculation/Cp.cpp b/src/gpu/VirtualFluids_GPU/Calculation/Cp.cpp
index 3956bcbee4478e7c780559ef2dc74b2bd1fc79f7..2bb2bd943f6f24a8b904f949a43e75426e497ba1 100644
--- a/src/gpu/VirtualFluids_GPU/Calculation/Cp.cpp
+++ b/src/gpu/VirtualFluids_GPU/Calculation/Cp.cpp
@@ -463,7 +463,6 @@ void printGeoFile(Parameter* para, bool fileFormat)
     }
     else //Binary:
     {
-        int tempX = 0;
         //////////////////////////////////////////////////////////////////////////
         std::ofstream ostr;
         ostr.open(fname, std::ios::out | std::ios::binary);
@@ -491,10 +490,8 @@ void printGeoFile(Parameter* para, bool fileFormat)
                 {
                     tempCoord = (para->getParH((int)lev)->coordinateX[para->getParH((int)lev)->cpTopIndex[i]] * para->getScaleLBMtoSI().at(0) + para->getTranslateLBMtoSI().at(0));
                     writeFloatToFile(tempCoord, ostr);
-                    tempX++;
                 }
             }
-            //std::cout << "tempX in geo: " << tempX << endl;
         }
         //////////////////////////////////////////////////////////////////////////
         // Y
diff --git a/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.cpp b/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.cpp
index f220c9a811486d14977ac9e55527c9e3e60c2478..c498721e56ff3aea1eab6258b26bfd2c4d95e33a 100644
--- a/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.cpp
+++ b/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.cpp
@@ -1,4 +1,4 @@
-#include "Calculation/ForceCalculations.h"
+#include "ForceCalculations.h"
 
 //////////////////////////////////////////////////////////////////////////
 #include "GPU/GPU_Interface.h"
@@ -35,18 +35,12 @@ ForceCalculations::ForceCalculations(Parameter* para)
 	isPID = true;
 }
 
-ForceCalculations::~ForceCalculations()
-{
-}
-
-
-
 void ForceCalculations::calcPIDControllerForForce(Parameter* para, CudaMemoryManager* cudaMemoryManager)
  {
 	 //////////////////////////////////////////////////////////////////////////
-	 double tempVeloX = 0.0, tempVeloY = 0.0, tempVeloZ = 0.0;
-	 double veloAverageX = 0.0; //, veloAverageY = 0.0, veloAverageZ = 0.0;
-	 double levelVeloAverageX = 0.0, levelVeloAverageY = 0.0, levelVeloAverageZ = 0.0;
+	 double tempVeloX = 0.0;
+	 double veloAverageX = 0.0;
+	 double levelVeloAverageX = 0.0;
 	 int counter = 0;
 	 //////////////////////////////////////////////////////////////////////////
 	 for (int lev = para->getCoarse(); lev <= para->getFine(); lev++)
@@ -72,21 +66,14 @@ void ForceCalculations::calcPIDControllerForForce(Parameter* para, CudaMemoryMan
 			 getLastCudaError("CalcMacSP27 execution failed");
 			 //////////////////////////////////////////////////////////////////
 			 cudaMemoryManager->cudaCopyPrint(lev);
-//			 para->cudaCopyForceVelo(i,numberOfElements);
 			 //////////////////////////////////////////////////////////////////
 			 for (size_t pos = 0; pos < numberOfElements; pos++)
 			 {
 				 tempVeloX += (double)para->getParH(lev)->velocityX[pos];
-				 tempVeloY += (double)para->getParH(lev)->velocityY[pos];
-				 tempVeloZ += (double)para->getParH(lev)->velocityZ[pos];
 			 }
 			 tempVeloX /= (double)numberOfElements;
-			 tempVeloY /= (double)numberOfElements;
-			 tempVeloZ /= (double)numberOfElements;
 			 //////////////////////////////////////////////////////////////////
 			 levelVeloAverageX += tempVeloX;
-			 levelVeloAverageY += tempVeloY;
-			 levelVeloAverageZ += tempVeloZ;
 			 //////////////////////////////////////////////////////////////////
 			 counter++;
 			 //////////////////////////////////////////////////////////////////
@@ -94,8 +81,6 @@ void ForceCalculations::calcPIDControllerForForce(Parameter* para, CudaMemoryMan
 	 }
 	 //////////////////////////////////////////////////////////////////////////
 	 veloAverageX = levelVeloAverageX / (double)counter;
-	 //veloAverageY = levelVeloAverageY / (double)counter;
-	 //veloAverageZ = levelVeloAverageZ / (double)counter;
 	 //////////////////////////////////////////////////////////////////////////
 	 if (isPID)
 	 {
diff --git a/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.h b/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.h
index 4506d23abd7068697a089c926d684406af789aef..867e1327d1a6e2fefaa049f9e3d8e3dd6eb19666 100644
--- a/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.h
+++ b/src/gpu/VirtualFluids_GPU/Calculation/ForceCalculations.h
@@ -13,7 +13,6 @@ class ForceCalculations
 {
 public:
 	ForceCalculations(Parameter* para);
-	~ForceCalculations();
 	void calcPIDControllerForForce(Parameter* para, CudaMemoryManager* cudaMemoryManager);
 	void printForcing(Parameter* para);
 
@@ -34,9 +33,4 @@ private:
 	bool isPID;
 };
 
-
-//void calcVeloForce(Parameter* para);
-//void allocVeloForForcing(Parameter* para);
-//void printForcing(Parameter* para);
-
 #endif /* FORCE_CALCULATIONS_H */
diff --git a/src/gpu/VirtualFluids_GPU/Communication/CommunicationRoutineMocks.h b/src/gpu/VirtualFluids_GPU/Communication/CommunicationRoutineMocks.h
new file mode 100644
index 0000000000000000000000000000000000000000..d05e5b6a3fdb75f9073d9f376980612f040c4038
--- /dev/null
+++ b/src/gpu/VirtualFluids_GPU/Communication/CommunicationRoutineMocks.h
@@ -0,0 +1,21 @@
+#ifndef VF_GPU_COMMUNICATIONROUTINEMOCKS_H
+#define VF_GPU_COMMUNICATIONROUTINEMOCKS_H
+
+#include "CommunicationRoutine.h"
+
+namespace vf::gpu::test 
+{
+
+class CommunicationRoutineTestDouble : public vf::gpu::CommunicationRoutine
+{
+public:
+    void receive_send(uint *buffer_receive, int size_buffer_recv, int neighbor_rank_recv, uint *buffer_send,
+                              int size_buffer_send, int neighbor_rank_send) const override { } 
+    int getPID() const override { return 0; }
+};
+
+}
+
+
+
+#endif
diff --git a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.cpp b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.cpp
index 3b511264e9c7edc80bbe367cac4a9b6d8725674b..e7a9e5bb6b5a5b0fa24d7ff7da5e3318891ea48d 100644
--- a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.cpp
+++ b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.cpp
@@ -9,7 +9,7 @@
 #include <GPU/CudaMemoryManager.h>
 
 
-std::shared_ptr<GridProvider> GridProvider::makeGridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_ptr<Parameter> para, std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::Communicator& communicator)
+std::shared_ptr<GridProvider> GridProvider::makeGridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_ptr<Parameter> para, std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::CommunicationRoutine& communicator)
 {
     return std::shared_ptr<GridProvider>(new GridGenerator(builder, para, cudaMemoryManager, communicator));
 }
diff --git a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.h b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.h
index 007db1e0d8e27b3810aa38c089bae8069bbe5813..079843371208891cc2ef6ae206f53a6f57678a1a 100644
--- a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.h
+++ b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridProvider.h
@@ -11,7 +11,7 @@
 #include "gpu/GridGenerator/io/SimulationFileWriter/SimulationFileWriter.h"
 namespace vf::gpu
 {
-class Communicator;
+class CommunicationRoutine;
 }
 
 class Parameter;
@@ -21,7 +21,7 @@ class CudaMemoryManager;
 class VIRTUALFLUIDS_GPU_EXPORT GridProvider
 {
 public:
-    static std::shared_ptr<GridProvider> makeGridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_ptr<Parameter> para, std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::Communicator& communicator);
+    static std::shared_ptr<GridProvider> makeGridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_ptr<Parameter> para, std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::CommunicationRoutine& communicator);
     static std::shared_ptr<GridProvider> makeGridReader(FILEFORMAT format, std::shared_ptr<Parameter> para, std::shared_ptr<CudaMemoryManager> cudaMemoryManager);
 
     virtual void allocArrays_CoordNeighborGeo() = 0;
diff --git a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.cpp b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.cpp
index 15bb8a43375bda7a90ef61548c1c68bafa9d1af5..8984c15ebcc44598a30a3864945198ab0c5fde07 100644
--- a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.cpp
+++ b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.cpp
@@ -14,14 +14,14 @@
 #include "GridGenerator/TransientBCSetter/TransientBCSetter.h"
 
 #include "utilities/communication.h"
-#include "Communication/Communicator.h"
+#include "Communication/CommunicationRoutine.h"
 
 #include <logger/Logger.h>
 
 using namespace vf::lbm::dir;
 
 GridGenerator::GridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_ptr<Parameter> para,
-                             std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::Communicator &communicator)
+                             std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::CommunicationRoutine &communicator)
     : mpiProcessID(communicator.getPID()), builder(builder)
 {
     this->para = para;
@@ -31,7 +31,7 @@ GridGenerator::GridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_p
         std::make_unique<InterpolationCellGrouper>(para->getParHallLevels(), para->getParDallLevels(), builder);
 }
 
-GridGenerator::~GridGenerator() {}
+GridGenerator::~GridGenerator() = default;
 
 void GridGenerator::setIndexRearrangementForStreams(std::unique_ptr<IndexRearrangementForStreams> &&indexRearrangement)
 {
diff --git a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.h b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.h
index 157eb5c37660f4de5f5d547b7bac2bbc5c749fc8..b03de24ec452e37c45280c90497e95fd782ef26c 100644
--- a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.h
+++ b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGenerator.h
@@ -45,6 +45,10 @@ class Parameter;
 class GridBuilder;
 class IndexRearrangementForStreams;
 class InterpolationCellGrouper;
+namespace vf::gpu
+{
+class CommunicationRoutine;
+}
 
 //! \class GridGenerator derived class of GridProvider
 //! \brief mapping the grid of grid generator to data structure for simulation
@@ -63,7 +67,7 @@ private:
     const uint mpiProcessID;
 
 public:
-    VIRTUALFLUIDS_GPU_EXPORT GridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_ptr<Parameter> para, std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::Communicator& communicator);
+    VIRTUALFLUIDS_GPU_EXPORT GridGenerator(std::shared_ptr<GridBuilder> builder, std::shared_ptr<Parameter> para, std::shared_ptr<CudaMemoryManager> cudaMemoryManager, vf::gpu::CommunicationRoutine& communicator);
     ~GridGenerator() override;
     //! \brief overwrites the default IndexRearrangementForStreams
     void setIndexRearrangementForStreams(std::unique_ptr<IndexRearrangementForStreams>&& indexRearrangement);
diff --git a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGeneratorTest.cpp b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGeneratorTest.cpp
index 1d3fb8220c9085b07708809e05814c960d52e61d..8685ea9db2d570b1aa6773659d954ac57333e366 100644
--- a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGeneratorTest.cpp
+++ b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/GridGeneratorTest.cpp
@@ -1,6 +1,7 @@
 #include "GridGenerator.h"
 #include <gmock/gmock.h>
 
+#include "Communication/CommunicationRoutine.h"
 #include "Communication/MpiCommunicator.h"
 #include "DataTypes.h"
 #include "GPU/CudaMemoryManager.h"
@@ -10,6 +11,8 @@
 #include "gpu/GridGenerator/grid/GridImp.h"
 #include "gpu/GridGenerator/utilities/communication.h"
 
+#include "Communication/CommunicationRoutineMocks.h"
+
 namespace GridGeneratorTest
 {
 
@@ -69,7 +72,7 @@ class IndexRearrangementForStreamsDouble : public IndexRearrangementForStreams
 {
 public:
     IndexRearrangementForStreamsDouble(std::shared_ptr<Parameter> para, std::shared_ptr<GridBuilder> builder,
-                                       vf::gpu::Communicator &communicator)
+                                       vf::gpu::CommunicationRoutine &communicator)
         : IndexRearrangementForStreams(para, builder, communicator){};
 
     void initCommunicationArraysForCommAfterFinetoCoarseX(uint level, int indexOfProcessNeighbor,
@@ -113,7 +116,7 @@ private:
         para->setNumprocs(2);
 
         builder = std::make_shared<LevelGridBuilderStub>(nullptr);
-        vf::gpu::Communicator &communicator = vf::gpu::MpiCommunicator::getInstance();
+        vf::gpu::test::CommunicationRoutineTestDouble communicator;
 
         gridGenerator = std::make_shared<GridGenerator>(builder, para, std::make_shared<CudaMemoryManagerDouble>(para),
                                                         communicator);
diff --git a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/IndexRearrangementForStreamsTest.cpp b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/IndexRearrangementForStreamsTest.cpp
index 081986add72b21314d0095c7da9df047e860f0d2..a8bc58488e6ebad6b38ae894e1c9c194e64c43c8 100644
--- a/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/IndexRearrangementForStreamsTest.cpp
+++ b/src/gpu/VirtualFluids_GPU/DataStructureInitializer/GridReaderGenerator/IndexRearrangementForStreamsTest.cpp
@@ -13,7 +13,8 @@
 #include "gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.h"
 #include "gpu/GridGenerator/grid/GridImp.h"
 #include "gpu/GridGenerator/utilities/communication.h"
-#include "gpu/VirtualFluids_GPU/Communication/MpiCommunicator.cpp"
+
+#include "Communication/CommunicationRoutineMocks.h"
 
 namespace indexRearrangementTests
 {
@@ -148,8 +149,10 @@ private:
         para->initProcessNeighborsAfterFtoCX(sendIndices.level);
 
         testSubject = std::make_unique<IndexRearrangementForStreams>(
-            IndexRearrangementForStreams(para, builder, vf::gpu::MpiCommunicator::getInstance()));
+            IndexRearrangementForStreams(para, builder, communicator));
     };
+
+    vf::gpu::test::CommunicationRoutineTestDouble communicator;
 };
 
 TEST_F(IndexRearrangementForStreamsTest_reorderSendIndices, reorderSendIndicesForCommAfterFtoCX)
@@ -608,8 +611,10 @@ private:
         para = testingVF::createParameterForLevel(ri.level);
 
         testSubject = std::make_unique<IndexRearrangementForStreams>(
-            IndexRearrangementForStreams(para, builder, vf::gpu::MpiCommunicator::getInstance()));
+            IndexRearrangementForStreams(para, builder, communicator));
     };
+
+    vf::gpu::test::CommunicationRoutineTestDouble communicator;
 };
 
 TEST_F(IndexRearrangementForStreamsTest_reorderRecvIndicesX, noSendIndicesForCommunicationAfterScalingFineToCoarse_receiveIndicesAreUnchanged)
diff --git a/src/gpu/VirtualFluids_GPU/GPU/CudaMemoryManager.h b/src/gpu/VirtualFluids_GPU/GPU/CudaMemoryManager.h
index e2f2e8658b6ef7a9453546454dd8e1f643574e17..1d01c227e780ec564b9eb1506f1a0183769d64b9 100644
--- a/src/gpu/VirtualFluids_GPU/GPU/CudaMemoryManager.h
+++ b/src/gpu/VirtualFluids_GPU/GPU/CudaMemoryManager.h
@@ -14,7 +14,15 @@
 #include <helper_cuda.h>
 
 #include <curand.h>
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
+#pragma clang diagnostic ignored "-Wunused-but-set-parameter"
+#endif
 #include <curand_kernel.h>
+#ifdef __clang__
+#pragma clang diagnostic pop
+#endif
 
 class Parameter;
 class PorousMedia;
diff --git a/src/gpu/VirtualFluids_GPU/GPU/GPU_Interface.h b/src/gpu/VirtualFluids_GPU/GPU/GPU_Interface.h
index 78e6bf8ecf0588eaf6e216916505ec0cbab6c215..b449bcca404b54469b52f7b383f0615632c4d06d 100644
--- a/src/gpu/VirtualFluids_GPU/GPU/GPU_Interface.h
+++ b/src/gpu/VirtualFluids_GPU/GPU/GPU_Interface.h
@@ -10,9 +10,19 @@
 
 #include "LBM/LB.h"
 
+#include <cuda.h>
 #include <cuda_runtime.h>
 #include <curand.h>
+
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
+#pragma clang diagnostic ignored "-Wunused-but-set-parameter"
+#endif
 #include <curand_kernel.h>
+#ifdef __clang__
+#pragma clang diagnostic pop
+#endif
 
 struct LBMSimulationParameter;
 class Parameter;
diff --git a/src/gpu/VirtualFluids_GPU/Output/QDebugWriter.hpp b/src/gpu/VirtualFluids_GPU/Output/QDebugWriter.hpp
index b24dab20be957fa27b9306d0bbabbec53694753c..d58526cab3b114e77bdb146053584795b05bac8a 100644
--- a/src/gpu/VirtualFluids_GPU/Output/QDebugWriter.hpp
+++ b/src/gpu/VirtualFluids_GPU/Output/QDebugWriter.hpp
@@ -33,8 +33,8 @@ namespace QDebugWriter
 				}
 			}
 			if (qKey > 0) {
-				real transportKey = *((real*)&qKey);
-				qNode.push_back(transportKey);
+				float transportKey = *((float*)&qKey);
+				qNode.push_back((real)transportKey);
 				qNode.push_back((real)k[j]);
 				qs.push_back(qNode);
 			}
diff --git a/src/gpu/VirtualFluids_GPU/Parameter/Parameter.cpp b/src/gpu/VirtualFluids_GPU/Parameter/Parameter.cpp
index cf8d1f15e52a597befc0bda43f04f2959cf5d7f4..e3758ca951e2d84f6377bdcb213f076383678ad4 100644
--- a/src/gpu/VirtualFluids_GPU/Parameter/Parameter.cpp
+++ b/src/gpu/VirtualFluids_GPU/Parameter/Parameter.cpp
@@ -37,7 +37,15 @@
 #include <cstdlib>
 #include <optional>
 
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
+#pragma clang diagnostic ignored "-Wunused-but-set-parameter"
+#endif
 #include <curand_kernel.h>
+#ifdef __clang__
+#pragma clang diagnostic pop
+#endif
 
 #include "StringUtilities/StringUtil.h"
 
diff --git a/utilities/ci-regression-tests/regression-tests-ci.yml.j2 b/utilities/ci-regression-tests/regression-tests-ci.yml.j2
index 4367ad6c7d5f820ef8975c37dbf843e5342e4dbd..f162ff0c855130ffb8f2cc1c391a62360577b82a 100644
--- a/utilities/ci-regression-tests/regression-tests-ci.yml.j2
+++ b/utilities/ci-regression-tests/regression-tests-ci.yml.j2
@@ -1,4 +1,4 @@
-image: git.rz.tu-bs.de:4567/irmb/virtualfluids/ubuntu20_04:1.5
+image: git.rz.tu-bs.de:4567/irmb/virtualfluids/ubuntu22_04:1.0
 
 stages: 
   - test
diff --git a/utilities/install-cppcheck.sh b/utilities/install-cppcheck.sh
new file mode 100755
index 0000000000000000000000000000000000000000..e0a89854917b7378ac85fed0e3cc43dc624db598
--- /dev/null
+++ b/utilities/install-cppcheck.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+set -e
+
+cd /tmp
+git clone https://github.com/danmar/cppcheck.git
+cd cppcheck 
+git checkout 2.10.3
+make MATCHCOMPILER=yes FILESDIR=/usr/share/cppcheck HAVE_RULES=yes CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" install
+cd /tmp
+rm -rf /tmp/cppcheck
+ldconfig
+cppcheck --version
\ No newline at end of file