From c5c721615e5b227d39fa882edb0ebcb0476430fb Mon Sep 17 00:00:00 2001 From: Anna Wellmann <a.wellmann@tu-bs.de> Date: Wed, 19 Apr 2023 09:31:55 +0000 Subject: [PATCH] Remove accidental change to DragLift calls They are part of a future merge --- src/gpu/VirtualFluids_GPU/LBM/Simulation.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gpu/VirtualFluids_GPU/LBM/Simulation.cpp b/src/gpu/VirtualFluids_GPU/LBM/Simulation.cpp index 06fc56d3e..55c025022 100644 --- a/src/gpu/VirtualFluids_GPU/LBM/Simulation.cpp +++ b/src/gpu/VirtualFluids_GPU/LBM/Simulation.cpp @@ -977,9 +977,7 @@ void Simulation::readAndWriteFiles(uint timestep) //////////////////////////////////////////////////////////////////////// if (para->getCalcDragLift()) { - vf::lbm::dragLift::writeTotalDragLiftToFile(para.get(), timestep); - vf::lbm::dragLift::writeForcesToFile(para.get(), timestep); - vf::lbm::dragLift::writeForcesToVtk(para.get(), timestep); + printDragLift(para.get(), cudaMemoryManager.get(), timestep); } //////////////////////////////////////////////////////////////////////// if (para->getCalcParticles()) copyAndPrintParticles(para.get(), cudaMemoryManager.get(), timestep, false); -- GitLab