From 6b24190c68e554d216e877528eb78c2ff72bce71 Mon Sep 17 00:00:00 2001 From: Matthew Harrison Date: Fri, 15 Jan 2021 12:38:36 -0500 Subject: [PATCH] update analysis time after call to oda , consistent with SPEAR configurations --- src/core/MOM.F90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/MOM.F90 b/src/core/MOM.F90 index f11ce42407..7d4d9b73cb 100644 --- a/src/core/MOM.F90 +++ b/src/core/MOM.F90 @@ -880,12 +880,12 @@ subroutine step_MOM(forces_in, fluxes_in, sfc_state, Time_start, time_int_in, CS enddo ; enddo ; endif if (CS%ensemble_ocean) then - ! update the time for the next analysis step if needed - call set_analysis_time(CS%Time,CS%odaCS) ! store ensemble vector in odaCS call set_prior_tracer(CS%Time, G, GV, CS%h, CS%tv, CS%odaCS) ! call DA interface call oda(CS%Time,CS%odaCS) + ! update the time for the next analysis step if needed + call set_analysis_time(CS%Time,CS%odaCS) endif if (showCallTree) call callTree_waypoint("calling extract_surface_state (step_MOM)")