Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split 4D-Var Mixed Resolution: Analysis phase #55

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions ROMS/Adjoint/ad_def_his.F
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,9 @@ SUBROUTINE ad_def_his_nf90 (ng, model, ldef)
& NF_FOUT, nvd4, u3dfrc, Aval, Vinfo, ncname)
IF (FoundError(exit_flag, NoError, __LINE__, MyFile)) RETURN
!
! Define surface V-momentum stress.
! Define surface V-momentum stress. Notice that the stress has its
! own fixed time-dimension (of size Nfrec) to allow 4DVAR adjustments
! at other times in addition to initialization time.
!
Vinfo( 1)=Vname(1,idVsms)
WRITE (Vinfo( 2),40) TRIM(Vname(2,idVsms))
Expand Down Expand Up @@ -2060,7 +2062,9 @@ SUBROUTINE ad_def_his_pio (ng, model, ldef)
& PIO_FOUT, nvd4, u3dfrc, Aval, Vinfo, ncname)
IF (FoundError(exit_flag, NoError, __LINE__, MyFile)) RETURN
!
! Define surface V-momentum stress.
! Define surface V-momentum stress. Notice that the stress has its
! own fixed time-dimension (of size Nfrec) to allow 4DVAR adjustments
! at other times in addition to initialization time.
!
Vinfo( 1)=Vname(1,idVsms)
WRITE (Vinfo( 2),40) TRIM(Vname(2,idVsms))
Expand Down
4 changes: 3 additions & 1 deletion ROMS/Adjoint/ad_wrt_his.F
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,9 @@ SUBROUTINE ad_wrt_his_nf90 (ng, model, tile, &
RETURN
END IF
!
! Write out surface V-momentum stress.
! Write out surface V-momentum stress. Notice that the stress has its
! own fixed time-dimension (of size Nfrec) to allow 4DVAR adjustments
! at other times in addition to initialization time.
!
scale=1.0_dp ! m2/s2
gtype=gfactor*v3dvar
Expand Down
3 changes: 1 addition & 2 deletions ROMS/Drivers/i4dvar.F
Original file line number Diff line number Diff line change
Expand Up @@ -1840,8 +1840,7 @@ SUBROUTINE analysis (my_outer, RunInterval)
IF (FoundError(exit_flag, NoError, __LINE__, MyFile)) RETURN
!
DO tile=first_tile(ng),last_tile(ng),+1
CALL ini_adjust (ng, tile, LTLM1, Lini)
!! CALL ini_fields (ng, tile, iNLM)
CALL ini_adjust (ng, tile, iTLM, LTLM1, Lini)
END DO
END DO
!
Expand Down
Loading