diff --git a/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/MaterialTransport.cpp b/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/MaterialTransport.cpp
index df15bc5f5cdae4e60230941dd680fc767ed5cbce..6515b86ee99e89ff5be580711891aad337db60b8 100644
--- a/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/MaterialTransport.cpp
+++ b/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/MaterialTransport.cpp
@@ -290,13 +290,13 @@ int main(int argc, char** argv) {
 // TIME LOOP //
 ///////////////
 #ifdef WALBERLA_BUILD_WITH_GPU_SUPPORT
-   initConcentrationField(blocks,densityConcentrationFieldID,simulationDomain,domainSize);
+   initConcentrationField(blocks,densityConcentrationFieldID,simulationDomain,domainSize, true);
    initFluidField(blocks, velFieldFluidID , Uinitialize,domainSize);
    gpu::fieldCpy<gpu::GPUField< real_t >, DensityField_concentration_T>(blocks, densityConcentrationFieldCPUGPUID,densityConcentrationFieldID);
    gpu::fieldCpy< gpu::GPUField< real_t >, VelocityField_fluid_T >(blocks, velFieldFluidCPUGPUID, velFieldFluidID);
 
 #else
-   initConcentrationField(blocks,densityConcentrationFieldCPUGPUID,simulationDomain,domainSize);
+   initConcentrationField(blocks,densityConcentrationFieldCPUGPUID,simulationDomain,domainSize,true);
    initFluidField(blocks, velFieldFluidCPUGPUID, Uinitialize,domainSize);
 
 #endif
diff --git a/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/benchmark.prm b/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/benchmark.prm
index 8f2d1b5480b3c7e8b4429a144d119562859ad121..c9f95ddd08c1b0b0a01bb7331679e157023fa29f 100644
--- a/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/benchmark.prm
+++ b/apps/benchmarks/MaterialTransport/one_way_coupling/performancebenchmark/benchmark.prm
@@ -9,9 +9,9 @@ NumericalSetup
     periodicInY false;
     periodicInZ false;
 
-    numXCellsPerBlock 128;
+    numXCellsPerBlock 256;
     numYCellsPerBlock 128;
-    numZCellsPerBlock 256;
+    numZCellsPerBlock 128;
 
     timeSteps 1000;
 
@@ -26,7 +26,7 @@ NumericalSetup
 
 Output
 {
-    vtkSpacing 0;
+    vtkSpacing 100;
     vtkFolder vtk_out;
 
     performanceLogFrequency 500;