From 910e1b5d57210cfbe9565baceee47fd0db93bf6f Mon Sep 17 00:00:00 2001 From: gespel Date: Thu, 23 May 2024 21:02:30 +0200 Subject: [PATCH] pipeline fix --- include/tug/Core/BTCS.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tug/Core/BTCS.hpp b/include/tug/Core/BTCS.hpp index e7d45cf..8cf9f24 100644 --- a/include/tug/Core/BTCS.hpp +++ b/include/tug/Core/BTCS.hpp @@ -511,7 +511,7 @@ static void BTCS_2DThomasInplace(Grid &grid, Boundary &bc, T timestep, int b = createSolutionVector(concentrations, alphaX, alphaY, bcLeft, bcRight, bcTop, bcBottom, colMax, i, sx, sy); - ThomasAlgorithmInplace(A, b, &concentrations_t1, i); + ThomasAlgorithmInplaceTemp(A, b, &concentrations_t1, i); //row_t1 = solverFunc(A, b); @@ -528,7 +528,7 @@ static void BTCS_2DThomasInplace(Grid &grid, Boundary &bc, T timestep, int A = createCoeffMatrix(alphaY, bcTop, bcBottom, rowMax, i, sy); b = createSolutionVector(concentrations_t1, alphaY, alphaX, bcTop, bcBottom, bcLeft, bcRight, rowMax, i, sy, sx); - ThomasAlgorithmInplaceNew(A, b, &concentrations, i); + ThomasAlgorithmInplaceTemp(A, b, &concentrations, i); //row_t1 = solverFunc(A, b); //concentrations.row(i) = row_t1;