From 59a74dfe4e591123834ce3c4d10b007695dede94 Mon Sep 17 00:00:00 2001 From: Hannah Klion Date: Tue, 12 Sep 2023 17:33:34 -0700 Subject: [PATCH] call update_vel on tempold in prestep_t --- Source/TimeIntegration/ROMSX_prestep_t_3d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/TimeIntegration/ROMSX_prestep_t_3d.cpp b/Source/TimeIntegration/ROMSX_prestep_t_3d.cpp index 64cad146..856e27bf 100644 --- a/Source/TimeIntegration/ROMSX_prestep_t_3d.cpp +++ b/Source/TimeIntegration/ROMSX_prestep_t_3d.cpp @@ -386,6 +386,6 @@ ROMSX::prestep_t_3d (const Box& tbx, const Box& gbx, //----------------------------------------------------------------------- // // Compute vertical diffusive fluxes "FC" of the tracer fields at - update_vel_3d(tbx, gbx, 0, 0, temp, tempstore, ru, Hz, Akt, DC, FC, + update_vel_3d(tbx, gbx, 0, 0, temp, tempold, ru, Hz, Akt, DC, FC, stflux, btflux, z_r, pm, pn, iic, iic, nnew, nstp, nrhs, N, lambda, dt_lev); }