diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2c0b8503c17b9612dfe436ac2073d83fcc7f2695..b91998656cd36fc0328b917676fda504a322fd47 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,7 +23,7 @@ stages:
   cache:
     key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
     paths:
-      - $BUILD_FOLDER
+      - $CI_PROJECT_DIR/cache
 
   artifacts:
     expire_in: 1 hrs
@@ -33,6 +33,9 @@ stages:
   before_script:
     - export CC=gcc
     - export CXX=g++
+    - export CCACHE_BASEDIR=$CI_PROJECT_DIR
+    - export CCACHE_DIR=$CI_PROJECT_DIR/cache
+    - ccache -s
 
   script:
     - $CXX --version
@@ -41,8 +44,9 @@ stages:
     - mpirun --version
     - mkdir -p $CI_PROJECT_DIR/$BUILD_FOLDER
     - cd $CI_PROJECT_DIR/$BUILD_FOLDER
+    - rm -r -f ./*
     - cmake ..
-      --preset=all_make
+      --preset=all_make_ccache
       -DBUILD_WARNINGS_AS_ERRORS=ON
       -DCMAKE_CUDA_ARCHITECTURES=60
     - cmake . -LAH
@@ -64,42 +68,6 @@ clang_10:
     - export CC=clang
     - export CXX=clang++
 
-
-###############################################################################
-gcc_9_rebuild:
-  stage: build
-
-  image: irmb/virtualfluids-deps-ubuntu20.04
-
-  tags:
-    - gpu
-    - linux
-
-  before_script:
-    - export CCACHE_BASEDIR=$CI_PROJECT_DIR
-    - export CCACHE_DIR=$CI_PROJECT_DIR/cache
-    - ccache -s
-
-  script:
-    - mkdir -p $CI_PROJECT_DIR/build
-    - cd $CI_PROJECT_DIR/build
-    - rm -r -f ./*
-    - cmake ..
-      --preset=all_make_ccache
-      -DBUILD_WARNINGS_AS_ERRORS=ON
-      -DCMAKE_CUDA_ARCHITECTURES=60
-    - make -j4  2>&1 | tee gcc_warnings.txt
-    - ccache -s
-
-  artifacts:
-    paths:
-      - build/gcc_warnings.txt
-
-  cache:
-    key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
-    paths:
-      - $CI_PROJECT_DIR/cache
-
 ###############################################################################
 msvc_16:
   stage: build
@@ -214,8 +182,7 @@ clang_build_analyzer_clang_10:
     - mkdir -p $CI_PROJECT_DIR/build
     - cd $CI_PROJECT_DIR/build
     - cmake ..
-      -DBUILD_VF_CPU=ON
-      -DBUILD_VF_GPU=ON
+      --preset=all_make
       -DCMAKE_CUDA_ARCHITECTURES=60
       -DCMAKE_CXX_FLAGS=-ftime-trace
     - ClangBuildAnalyzer --start .
@@ -249,8 +216,7 @@ include_what_you_use_clang_10:
     - mkdir -p $CI_PROJECT_DIR/build
     - cd $CI_PROJECT_DIR/build
     - cmake ..
-      -DBUILD_VF_CPU=ON
-      -DBUILD_VF_GPU=ON
+      --preset=all_make
       -DCMAKE_CUDA_ARCHITECTURES=60
       -DBUILD_VF_INCLUDE_WHAT_YOU_USE=ON
     - make
@@ -284,7 +250,7 @@ cppcheck:
 
 ###############################################################################
 # lizard - Cyclomatic Complexity Analyzer
-# Ignore warnings is manually set to 191. This job will fail when new warnings are added.
+# Ignore warnings is manually set to 400, as we do not want this job to fail.
 lizard:
   stage: analyze
 
@@ -373,9 +339,8 @@ clang-tidy:
     - mkdir -p $CI_PROJECT_DIR/build
     - cd $CI_PROJECT_DIR/build
     - cmake ..
+      --preset=cpu_make
       -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
-      -DBUILD_VF_CPU=ON
-      -DBUILD_VF_GPU=OFF
     - python3 ../utilities/filterCompileCommands.py compile_commands.json
     - run-clang-tidy -quiet > clangtidy.txt
 
@@ -402,7 +367,7 @@ sonar-scanner:
   variables:
     SONAR_HOST_URL: "http://gitlab-runner01.irmb.bau.tu-bs.de/sonarqube/"
 
-  needs: ["cppcheck","clang-tidy","gcov_gcc_9","gcc_9_rebuild"]
+  needs: ["cppcheck","clang-tidy","gcov_gcc_9"]
 
   before_script:
     - cd /tmp
diff --git a/CMake/3rd/boost.cmake b/CMake/3rd/boost.cmake
index 74f6f165cda1ef93f64dd326c961b2663bc6ea67..89d4bfd8757e9b914ae8dbc2a1aea672efa0ba29 100644
--- a/CMake/3rd/boost.cmake
+++ b/CMake/3rd/boost.cmake
@@ -30,10 +30,8 @@ function(linkBoost)
     if(DEFINED ARG_COMPONENTS)
         find_package( Boost REQUIRED COMPONENTS ${ARG_COMPONENTS})
         target_link_libraries(${library_name} PRIVATE ${Boost_LIBRARIES})
-        message("here")
     else()
         find_package( Boost REQUIRED)
-        message("or here")
     endif()
 
 
diff --git a/CMake/CMakeSetCompilerFlags.cmake b/CMake/CMakeSetCompilerFlags.cmake
index 784f3f24a7cde518e113363aa92ce90fec0e9c2d..2ea8c0b2faf0a398681e32232aa7d247b511c72c 100644
--- a/CMake/CMakeSetCompilerFlags.cmake
+++ b/CMake/CMakeSetCompilerFlags.cmake
@@ -68,6 +68,9 @@ function(addAdditionalFlags project_name)
     # compile options
     foreach(flag IN LISTS CS_COMPILER_FLAGS_CXX)
         target_compile_options(${project_name} PRIVATE "$<$<COMPILE_LANGUAGE:CXX>:${flag}>")
+        if(MSVC)
+            target_compile_options(${project_name} PRIVATE "$<$<COMPILE_LANGUAGE:CUDA>:-Xcompiler=${flag}>")
+        endif()
     endforeach()
 
     foreach(flag IN LISTS CS_COMPILER_FLAGS_CXX_DEBUG)
diff --git a/CMake/cmake_config_files/BLOGIN1.config.cmake b/CMake/cmake_config_files/BLOGIN1.config.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..9400e45f964dd3e0331b178e8b766c4c7fa7c08f
--- /dev/null
+++ b/CMake/cmake_config_files/BLOGIN1.config.cmake
@@ -0,0 +1 @@
+INCLUDE("CMake/cmake_config_files/LISE.config.cmake")
\ No newline at end of file
diff --git a/CMake/cmake_config_files/BLOGIN2.config.cmake b/CMake/cmake_config_files/BLOGIN2.config.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..9400e45f964dd3e0331b178e8b766c4c7fa7c08f
--- /dev/null
+++ b/CMake/cmake_config_files/BLOGIN2.config.cmake
@@ -0,0 +1 @@
+INCLUDE("CMake/cmake_config_files/LISE.config.cmake")
\ No newline at end of file
diff --git a/CMake/cmake_config_files/LISE.config.cmake b/CMake/cmake_config_files/LISE.config.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..705f02c62f5beb1eb5544af88d9a248c65e684ba
--- /dev/null
+++ b/CMake/cmake_config_files/LISE.config.cmake
@@ -0,0 +1,15 @@
+#################################################################################
+#  METIS  
+#################################################################################
+IF(${USE_METIS})
+  SET(METIS_INCLUDEDIR "/home/niikonst/metis-5.1.0/include")
+  SET(METIS_DEBUG_LIBRARY "/home/niikonst/metis-5.1.0/build/Linux-x86_64/libmetis/libmetis.a") 
+  SET(METIS_RELEASE_LIBRARY "/home/niikonst/metis-5.1.0/build/Linux-x86_64/libmetis/libmetis.a")
+ENDIF()
+#################################################################################
+#  BOOST  
+#################################################################################
+SET(BOOST_VERSION "1.72.0")
+SET(BOOST_ROOT "/sw/tools/boost/1.72.0/skl/openmpi.3.1.5-gcc.9.2.0")
+SET(BOOST_DIR ${BOOST_ROOT})
+SET(BOOST_LIBRARYDIR ${BOOST_ROOT}"/lib")  
\ No newline at end of file
diff --git a/sonar-project.properties b/sonar-project.properties
index 79510bce96750061e92d6d0bf720eb1c6427790a..572916aab3b526fc9358dbe79e64af9d03cb0942 100644
--- a/sonar-project.properties
+++ b/sonar-project.properties
@@ -27,8 +27,6 @@ sonar.cxx.clangtidy.reportPath=build/clangtidy.txt
 
 sonar.cxx.jsonCompilationDatabase=build/compile_commands.json
 
-sonar.cxx.gcc.reportPath=build/gcc_warnings.txt
-
 #sonar.cxx.valgrind.reportPath
 
 sonar.cxx.funccomplexity.threshold=10
diff --git a/src/basics/Core/Input/ConfigData/ConfigDataImp.cpp b/src/basics/Core/Input/ConfigData/ConfigDataImp.cpp
index 7e0e093610b6f1decde482abddb9ba331213810d..0c53b32829eb989667b93fc7df156525267e930b 100644
--- a/src/basics/Core/Input/ConfigData/ConfigDataImp.cpp
+++ b/src/basics/Core/Input/ConfigData/ConfigDataImp.cpp
@@ -5,86 +5,6 @@ std::shared_ptr<ConfigDataImp> ConfigDataImp::getNewInstance()
     return std::shared_ptr<ConfigDataImp>(new ConfigDataImp());
 }
 
-ConfigDataImp::ConfigDataImp()
-{
-    this->isViscosity            = false;
-    this->isNumberOfDevices      = false;
-    this->isDevices              = false;
-    this->isOutputPath           = false;
-    this->isPrefix               = false;
-    this->isGridPath             = false;
-    this->isPrintOutputFiles     = false;
-    this->isGeometryValues       = false;
-    this->isCalc2ndOrderMoments  = false;
-    this->isCalc3rdOrderMoments  = false;
-    this->isCalcHighOrderMoments = false;
-    this->isReadGeo              = false;
-    this->isCalcMedian           = false;
-    this->isCalcDragLift         = false;
-    this->isCalcCp               = false;
-    this->isConcFile             = false;
-    this->isUseMeasurePoints     = false;
-    this->isUseWale              = false;
-    this->isSimulatePorousMedia  = false;
-    this->isD3Qxx                = false;
-    this->isTEnd                 = false;
-    this->isTOut                 = false;
-    this->isTStartOut            = false;
-    this->isTimeCalcMedStart     = false;
-    this->isTimeCalcMedEnd       = false;
-    this->isPressInID            = false;
-    this->isPressOutID           = false;
-    this->isPressInZ             = false;
-    this->isPressOutZ            = false;
-    this->isDiffOn               = false;
-    this->isDiffMod              = false;
-    this->isDiffusivity          = false;
-    this->isTemperatureInit      = false;
-    this->isTemperatureBC        = false;
-    this->isVelocity             = false;
-    this->isViscosityRatio       = false;
-    this->isVelocityRatio        = false;
-    this->isDensityRatio         = false;
-    this->isPressRatio           = false;
-    this->isRealX                = false;
-    this->isRealY                = false;
-    this->isFactorPressBC        = false;
-    this->isGeometryFileC        = false;
-    this->isGeometryFileM        = false;
-    this->isGeometryFileF        = false;
-    this->isClockCycleForMP      = false;
-    this->isTimestepForMP        = false;
-    this->isForcingX             = false;
-    this->isForcingY             = false;
-    this->isForcingZ             = false;
-    this->isCalcParticles        = false;
-    this->isParticleBasicLevel   = false;
-    this->isParticleInitLevel    = false;
-    this->isNumberOfParticles    = false;
-    this->isNeighborWSB          = false;
-    this->isStartXHotWall        = false;
-    this->isEndXHotWall          = false;
-    this->isPossNeighborFilesX   = false;
-    this->isPossNeighborFilesY   = false;
-    this->isPossNeighborFilesZ   = false;
-    this->isTimeDoCheckPoint     = false;
-    this->isTimeDoRestart        = false;
-    this->isDoCheckPoint         = false;
-    this->isDoRestart            = false;
-    this->isMaxLevel             = false;
-    this->isGridX                = false;
-    this->isGridY                = false;
-    this->isGridZ                = false;
-    this->isDistX                = false;
-    this->isDistY                = false;
-    this->isDistZ                = false;
-    this->isNeedInterface        = false;
-    this->isMainKernel           = false;
-    this->isMultiKernelOn        = false;
-    this->isMultiKernelLevel     = false;
-    this->isMultiKernelName      = false;
-}
-
 real ConfigDataImp::getViscosity() { return this->viscosity; }
 
 uint ConfigDataImp::getNumberOfDevices() { return this->numberOfDevices; }
@@ -633,19 +553,19 @@ void ConfigDataImp::setEndXHotWall(real endXHotWall)
     this->isEndXHotWall = true;
 }
 
-void ConfigDataImp::setPossNeighborFilesX(std::vector<std::string> possNeighborFilesX)
+void ConfigDataImp::setPossNeighborFilesX(const std::vector<std::string> &possNeighborFilesX)
 {
     this->possNeighborFilesX   = possNeighborFilesX;
     this->isPossNeighborFilesX = true;
 }
 
-void ConfigDataImp::setPossNeighborFilesY(std::vector<std::string> possNeighborFilesY)
+void ConfigDataImp::setPossNeighborFilesY(const std::vector<std::string> &possNeighborFilesY)
 {
     this->possNeighborFilesY   = possNeighborFilesY;
     this->isPossNeighborFilesY = true;
 }
 
-void ConfigDataImp::setPossNeighborFilesZ(std::vector<std::string> possNeighborFilesZ)
+void ConfigDataImp::setPossNeighborFilesZ(const std::vector<std::string> &possNeighborFilesZ)
 {
     this->possNeighborFilesZ   = possNeighborFilesZ;
     this->isPossNeighborFilesZ = true;
@@ -681,49 +601,49 @@ void ConfigDataImp::setMaxLevel(uint maxLevel)
     this->isMaxLevel = true;
 }
 
-void ConfigDataImp::setGridX(std::vector<int> gridX)
+void ConfigDataImp::setGridX(const std::vector<int> &gridX)
 {
     this->gridX   = gridX;
     this->isGridX = true;
 }
 
-void ConfigDataImp::setGridY(std::vector<int> gridY)
+void ConfigDataImp::setGridY(const std::vector<int> &gridY)
 {
     this->gridY   = gridY;
     this->isGridY = true;
 }
 
-void ConfigDataImp::setGridZ(std::vector<int> gridZ)
+void ConfigDataImp::setGridZ(const std::vector<int> &gridZ)
 {
     this->gridZ   = gridZ;
     this->isGridZ = true;
 }
 
-void ConfigDataImp::setDistX(std::vector<int> distX)
+void ConfigDataImp::setDistX(const std::vector<int> &distX)
 {
     this->distX   = distX;
     this->isDistX = true;
 }
 
-void ConfigDataImp::setDistY(std::vector<int> distY)
+void ConfigDataImp::setDistY(const std::vector<int> &distY)
 {
     this->distY   = distY;
     this->isDistY = true;
 }
 
-void ConfigDataImp::setDistZ(std::vector<int> distZ)
+void ConfigDataImp::setDistZ(const std::vector<int> &distZ)
 {
     this->distZ   = distZ;
     this->isDistZ = true;
 }
 
-void ConfigDataImp::setNeedInterface(std::vector<bool> needInterface)
+void ConfigDataImp::setNeedInterface(const std::vector<bool> &needInterface)
 {
     this->needInterface   = needInterface;
     this->isNeedInterface = true;
 }
 
-void ConfigDataImp::setMainKernel(std::string mainKernel)
+void ConfigDataImp::setMainKernel(const std::string &mainKernel)
 {
     this->mainKernel   = mainKernel;
     this->isMainKernel = true;
@@ -735,13 +655,13 @@ void ConfigDataImp::setMultiKernelOn(bool multiKernelOn)
     this->isMultiKernelOn = true;
 }
 
-void ConfigDataImp::setMultiKernelLevel(std::vector<int> multiKernelLevel)
+void ConfigDataImp::setMultiKernelLevel(const std::vector<int> &multiKernelLevel)
 {
     this->multiKernelLevel   = multiKernelLevel;
     this->isMultiKernelLevel = true;
 }
 
-void ConfigDataImp::setMultiKernelName(std::vector<std::string> multiKernelName)
+void ConfigDataImp::setMultiKernelName(const std::vector<std::string> &multiKernelName)
 {
     this->multiKernelName   = multiKernelName;
     this->isMultiKernelName = true;
diff --git a/src/basics/Core/Input/ConfigData/ConfigDataImp.h b/src/basics/Core/Input/ConfigData/ConfigDataImp.h
index 34a2a95b919f9ccd23072d0a0608aa269386ef80..511ac4be166c7e43885209f144f0cdac6821c6f1 100644
--- a/src/basics/Core/Input/ConfigData/ConfigDataImp.h
+++ b/src/basics/Core/Input/ConfigData/ConfigDataImp.h
@@ -161,9 +161,9 @@ public:
     void setNumberOfParticles(int numberOfParticles);
     void setStartXHotWall(real startXHotWall);
     void setEndXHotWall(real endXHotWall);
-    void setPossNeighborFilesX(std::vector<std::string> possNeighborFilesX);
-    void setPossNeighborFilesY(std::vector<std::string> possNeighborFilesY);
-    void setPossNeighborFilesZ(std::vector<std::string> possNeighborFilesZ);
+    void setPossNeighborFilesX(const std::vector<std::string> &possNeighborFilesX);
+    void setPossNeighborFilesY(const std::vector<std::string> &possNeighborFilesY);
+    void setPossNeighborFilesZ(const std::vector<std::string> &possNeighborFilesZ);
     // void setPossNeighborFilesX(std::vector<std::string> possNeighborFilesX);
     // void setPossNeighborFilesY(std::vector<std::string> possNeighborFilesY);
     // void setPossNeighborFilesZ(std::vector<std::string> possNeighborFilesZ);
@@ -172,17 +172,17 @@ public:
     void setDoCheckPoint(bool doCheckPoint);
     void setDoRestart(bool doRestart);
     void setMaxLevel(uint maxLevel);
-    void setGridX(std::vector<int> gridX);
-    void setGridY(std::vector<int> gridY);
-    void setGridZ(std::vector<int> gridZ);
-    void setDistX(std::vector<int> distX);
-    void setDistY(std::vector<int> distY);
-    void setDistZ(std::vector<int> distZ);
-    void setNeedInterface(std::vector<bool> needInterface);
-    void setMainKernel(std::string mainKernel);
+    void setGridX(const std::vector<int> &gridX);
+    void setGridY(const std::vector<int> &gridY);
+    void setGridZ(const std::vector<int> &gridZ);
+    void setDistX(const std::vector<int> &distX);
+    void setDistY(const std::vector<int> &distY);
+    void setDistZ(const std::vector<int> &distZ);
+    void setNeedInterface(const std::vector<bool> &needInterface);
+    void setMainKernel(const std::string &mainKernel);
     void setMultiKernelOn(bool multiKernelOn);
-    void setMultiKernelLevel(std::vector<int> multiKernelLevel);
-    void setMultiKernelName(std::vector<std::string> multiKernelName);
+    void setMultiKernelLevel(const std::vector<int> &multiKernelLevel);
+    void setMultiKernelName(const std::vector<std::string> &multiKernelName);
 
     bool isViscosityInConfigFile() override;
     bool isNumberOfDevicesInConfigFile() override;
@@ -270,83 +270,83 @@ public:
     bool isMultiKernelNameInConfigFile() override;
 
 private:
-    ConfigDataImp();
+    ConfigDataImp() = default;
 
-    real viscosity;
-    uint numberOfDevices;
+    real viscosity { 0. };
+    uint numberOfDevices { 0 };
     std::vector<uint> devices;
     std::string outputPath;
     std::string prefix;
     std::string gridPath;
-    bool printOutputFiles;
-    bool geometryValues;
-    bool calc2ndOrderMoments;
-    bool calc3rdOrderMoments;
-    bool calcHighOrderMoments;
-    bool readGeo;
-    bool calcMedian;
-    bool calcDragLift;
-    bool calcCp;
-    bool writeVeloASCIIfiles;
-    bool calcPlaneConc;
-    bool concFile;
-    bool streetVelocityFile;
-    bool useMeasurePoints;
-    bool useWale;
-    bool useInitNeq;
-    bool simulatePorousMedia;
-    uint d3Qxx;
-    uint tEnd;
-    uint tOut;
-    uint tStartOut;
-    uint timeCalcMedStart;
-    uint timeCalcMedEnd;
-    uint pressInID;
-    uint pressOutID;
-    uint pressInZ;
-    uint pressOutZ;
-    bool diffOn;
-    uint diffMod;
-    real diffusivity;
-    real temperatureInit;
-    real temperatureBC;
-    // real viscosity;
-    real velocity;
-    real viscosityRatio;
-    real velocityRatio;
-    real densityRatio;
-    real pressRatio;
-    real realX;
-    real realY;
-    real factorPressBC;
+    bool printOutputFiles { false };
+    bool geometryValues { false };
+    bool calc2ndOrderMoments { false };
+    bool calc3rdOrderMoments { false };
+    bool calcHighOrderMoments { false };
+    bool readGeo { false };
+    bool calcMedian { false };
+    bool calcDragLift { false };
+    bool calcCp { false };
+    bool writeVeloASCIIfiles { false };
+    bool calcPlaneConc { false };
+    bool concFile { false };
+    bool streetVelocityFile { false };
+    bool useMeasurePoints { false };
+    bool useWale { false };
+    bool useInitNeq { false };
+    bool simulatePorousMedia { false };
+    uint d3Qxx { 0 };
+    uint tEnd { 0 };
+    uint tOut { 0 };
+    uint tStartOut { 0 };
+    uint timeCalcMedStart { 0 };
+    uint timeCalcMedEnd { 0 };
+    uint pressInID { 0 };
+    uint pressOutID { 0 };
+    uint pressInZ { 0 };
+    uint pressOutZ { 0 };
+    bool diffOn { false };
+    uint diffMod { 0 };
+    real diffusivity { 0. };
+    real temperatureInit { 0. };
+    real temperatureBC { 0. };
+    // real viscosity { 0 };
+    real velocity { 0. };
+    real viscosityRatio { 0. };
+    real velocityRatio { 0. };
+    real densityRatio { 0. };
+    real pressRatio { 0. };
+    real realX { 0. };
+    real realY { 0. };
+    real factorPressBC { 0. };
     std::string geometryFileC;
     std::string geometryFileM;
     std::string geometryFileF;
-    uint clockCycleForMP;
-    uint timestepForMP;
-    real forcingX;
-    real forcingY;
-    real forcingZ;
-    real quadricLimiterP;
-    real quadricLimiterM;
-    real quadricLimiterD;
-    bool calcParticles;
-    int particleBasicLevel;
-    int particleInitLevel;
-    int numberOfParticles;
-    real startXHotWall;
-    real endXHotWall;
+    uint clockCycleForMP { 0 };
+    uint timestepForMP { 0 };
+    real forcingX { 0. };
+    real forcingY { 0. };
+    real forcingZ { 0. };
+    real quadricLimiterP { 0. };
+    real quadricLimiterM { 0. };
+    real quadricLimiterD { 0. };
+    bool calcParticles { false };
+    int particleBasicLevel { 0 };
+    int particleInitLevel { 0 };
+    int numberOfParticles { 0 };
+    real startXHotWall { 0. };
+    real endXHotWall { 0. };
     std::vector<std::string> possNeighborFilesX;
     std::vector<std::string> possNeighborFilesY;
     std::vector<std::string> possNeighborFilesZ;
     // std::vector<std::string> possNeighborFilesX;
     // std::vector<std::string> possNeighborFilesY;
     // std::vector<std::string> possNeighborFilesZ;
-    int timeDoCheckPoint;
-    int timeDoRestart;
-    bool doCheckPoint;
-    bool doRestart;
-    int maxLevel;
+    int timeDoCheckPoint { 0 };
+    int timeDoRestart { 0 };
+    bool doCheckPoint{ false };
+    bool doRestart{ false };
+    int maxLevel { 0 };
     std::vector<int> gridX;
     std::vector<int> gridY;
     std::vector<int> gridZ;
@@ -355,93 +355,93 @@ private:
     std::vector<int> distZ;
     std::vector<bool> needInterface;
     std::string mainKernel;
-    bool multiKernelOn;
+    bool multiKernelOn{ false };
     std::vector<int> multiKernelLevel;
     std::vector<std::string> multiKernelName;
 
-    bool isViscosity;
-    bool isNumberOfDevices;
-    bool isDevices;
-    bool isOutputPath;
-    bool isPrefix;
-    bool isGridPath;
-    bool isPrintOutputFiles;
-    bool isGeometryValues;
-    bool isCalc2ndOrderMoments;
-    bool isCalc3rdOrderMoments;
-    bool isCalcHighOrderMoments;
-    bool isReadGeo;
-    bool isCalcMedian;
-    bool isCalcDragLift;
-    bool isCalcCp;
-    bool isWriteVeloASCII;
-    bool isCalcPlaneConc;
-    bool isConcFile;
-    bool isStreetVelocityFile;
-    bool isUseMeasurePoints;
-    bool isUseWale;
-    bool isUseInitNeq;
-    bool isSimulatePorousMedia;
-    bool isD3Qxx;
-    bool isTEnd;
-    bool isTOut;
-    bool isTStartOut;
-    bool isTimeCalcMedStart;
-    bool isTimeCalcMedEnd;
-    bool isPressInID;
-    bool isPressOutID;
-    bool isPressInZ;
-    bool isPressOutZ;
-    bool isDiffOn;
-    bool isDiffMod;
-    bool isDiffusivity;
-    bool isTemperatureInit;
-    bool isTemperatureBC;
-    // bool isViscosity;
-    bool isVelocity;
-    bool isViscosityRatio;
-    bool isVelocityRatio;
-    bool isDensityRatio;
-    bool isPressRatio;
-    bool isRealX;
-    bool isRealY;
-    bool isFactorPressBC;
-    bool isGeometryFileC;
-    bool isGeometryFileM;
-    bool isGeometryFileF;
-    bool isClockCycleForMP;
-    bool isTimestepForMP;
-    bool isForcingX;
-    bool isForcingY;
-    bool isForcingZ;
-    bool isQuadricLimiterP;
-    bool isQuadricLimiterM;
-    bool isQuadricLimiterD;
-    bool isCalcParticles;
-    bool isParticleBasicLevel;
-    bool isParticleInitLevel;
-    bool isNumberOfParticles;
-    bool isNeighborWSB;
-    bool isStartXHotWall;
-    bool isEndXHotWall;
-    bool isPossNeighborFilesX;
-    bool isPossNeighborFilesY;
-    bool isPossNeighborFilesZ;
-    bool isTimeDoCheckPoint;
-    bool isTimeDoRestart;
-    bool isDoCheckPoint;
-    bool isDoRestart;
-    bool isMaxLevel;
-    bool isGridX;
-    bool isGridY;
-    bool isGridZ;
-    bool isDistX;
-    bool isDistY;
-    bool isDistZ;
-    bool isNeedInterface;
-    bool isMainKernel;
-    bool isMultiKernelOn;
-    bool isMultiKernelLevel;
-    bool isMultiKernelName;
+    bool isViscosity { false };
+    bool isNumberOfDevices {false};
+    bool isDevices { false };
+    bool isOutputPath { false };
+    bool isPrefix { false };
+    bool isGridPath { false };
+    bool isPrintOutputFiles { false };
+    bool isGeometryValues { false };
+    bool isCalc2ndOrderMoments { false };
+    bool isCalc3rdOrderMoments { false };
+    bool isCalcHighOrderMoments { false };
+    bool isReadGeo { false };
+    bool isCalcMedian { false };
+    bool isCalcDragLift { false };
+    bool isCalcCp { false };
+    bool isWriteVeloASCII { false };
+    bool isCalcPlaneConc { false };
+    bool isConcFile { false };
+    bool isStreetVelocityFile { false };
+    bool isUseMeasurePoints { false };
+    bool isUseWale { false };
+    bool isUseInitNeq { false };
+    bool isSimulatePorousMedia { false };
+    bool isD3Qxx { false };
+    bool isTEnd { false };
+    bool isTOut { false };
+    bool isTStartOut { false };
+    bool isTimeCalcMedStart { false };
+    bool isTimeCalcMedEnd { false };
+    bool isPressInID { false };
+    bool isPressOutID { false };
+    bool isPressInZ { false };
+    bool isPressOutZ { false };
+    bool isDiffOn { false };
+    bool isDiffMod { false };
+    bool isDiffusivity { false };
+    bool isTemperatureInit { false };
+    bool isTemperatureBC { false };
+    // bool isViscosity { false };
+    bool isVelocity { false };
+    bool isViscosityRatio { false };
+    bool isVelocityRatio { false };
+    bool isDensityRatio { false };
+    bool isPressRatio { false };
+    bool isRealX { false };
+    bool isRealY { false };
+    bool isFactorPressBC { false };
+    bool isGeometryFileC { false };
+    bool isGeometryFileM { false };
+    bool isGeometryFileF { false };
+    bool isClockCycleForMP { false };
+    bool isTimestepForMP { false };
+    bool isForcingX { false };
+    bool isForcingY { false };
+    bool isForcingZ { false };
+    bool isQuadricLimiterP { false };
+    bool isQuadricLimiterM { false };
+    bool isQuadricLimiterD { false };
+    bool isCalcParticles { false };
+    bool isParticleBasicLevel { false };
+    bool isParticleInitLevel { false };
+    bool isNumberOfParticles { false };
+    bool isNeighborWSB { false };
+    bool isStartXHotWall { false };
+    bool isEndXHotWall { false };
+    bool isPossNeighborFilesX { false };
+    bool isPossNeighborFilesY { false };
+    bool isPossNeighborFilesZ { false };
+    bool isTimeDoCheckPoint { false };
+    bool isTimeDoRestart { false };
+    bool isDoCheckPoint { false };
+    bool isDoRestart { false };
+    bool isMaxLevel { false };
+    bool isGridX { false };
+    bool isGridY { false };
+    bool isGridZ { false };
+    bool isDistX { false };
+    bool isDistY { false };
+    bool isDistZ { false };
+    bool isNeedInterface { false };
+    bool isMainKernel { false };
+    bool isMultiKernelOn { false };
+    bool isMultiKernelLevel { false };
+    bool isMultiKernelName { false };
 };
 #endif
diff --git a/src/basics/geometry3d/GbPolygon3D.cpp b/src/basics/geometry3d/GbPolygon3D.cpp
index 02138f75767420502d585842c7e05b9741df5b28..7905576ed5dae855350a333275cf5dcd1f6dbd3a 100644
--- a/src/basics/geometry3d/GbPolygon3D.cpp
+++ b/src/basics/geometry3d/GbPolygon3D.cpp
@@ -46,10 +46,13 @@ void GbPolygon3D::init()
 {
     x1s   = 0.0;
     x2s   = 0.0;
+    x3s   = 0.0;
     x1min = 0.0;
     x1max = 0.0;
     x2min = 0.0;
     x2max = 0.0;
+    x3min = 0.0;
+    x3max = 0.0;
     //		points   = NULL;
     consistent = false;
     ps         = NULL;