Skip to content
Snippets Groups Projects
Commit b055e9ed authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

Philippe 02/09/2016: added LBAK_BEG and LBAK_END to force backup at 1st and last timestep

parent 7eac56ea
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,10 @@ USE MODD_PARAMETERS ...@@ -47,6 +47,10 @@ USE MODD_PARAMETERS
! !
IMPLICIT NONE IMPLICIT NONE
! !
LOGICAL,SAVE :: LBAK_BEG = .FALSE. ! Force a backup at the first timestep
! of the segment for all models
LOGICAL,SAVE :: LBAK_END = .FALSE. ! Force a backup at the last timestep
! of the segment for all models
REAL,SAVE,ALLOCATABLE,DIMENSION(:,:) :: XBAK_TIME REAL,SAVE,ALLOCATABLE,DIMENSION(:,:) :: XBAK_TIME
! XBAK_TIME(m,i) array of ! XBAK_TIME(m,i) array of
! the increments in seconds from the beginning of the segment to the ! the increments in seconds from the beginning of the segment to the
......
...@@ -48,6 +48,6 @@ USE MODD_FMOUT ...@@ -48,6 +48,6 @@ USE MODD_FMOUT
! !
IMPLICIT NONE IMPLICIT NONE
! !
NAMELIST/NAM_FMOUT/XBAK_TIME,NBAK_STEP NAMELIST/NAM_FMOUT/LBAK_BEG,LBAK_END,XBAK_TIME,NBAK_STEP
! !
END MODULE MODN_FMOUT END MODULE MODN_FMOUT
...@@ -575,13 +575,21 @@ DO IMI = 1, NMODEL ...@@ -575,13 +575,21 @@ DO IMI = 1, NMODEL
END IF END IF
END DO END DO
! !
!* 2.3.2 Group all backups in a common form !* 2.3.2 Group all backups in a common form and add backups at beginning and end if requested
!
IF (LBAK_BEG) IBAK_NUMB = IBAK_NUMB + 1
IF (LBAK_END) IBAK_NUMB = IBAK_NUMB + 1
! !
ALLOCATE(IBAK_STEP(IBAK_NUMB)) ALLOCATE(IBAK_STEP(IBAK_NUMB))
IBAK_STEP(:) = NNEGUNDEF IBAK_STEP(:) = NNEGUNDEF
! !
IBAK_NUMB = 0 IBAK_NUMB = 0
! !
IF (LBAK_BEG) THEN
IBAK_NUMB = IBAK_NUMB + 1
IBAK_STEP(IBAK_NUMB) = 1 ! 1 is the 1st step number
END IF
!
DO JOUT = 1,JPOUTMAX DO JOUT = 1,JPOUTMAX
IF (XBAK_TIME(IMI,JOUT) >= 0.) THEN IF (XBAK_TIME(IMI,JOUT) >= 0.) THEN
IBAK_NUMB = IBAK_NUMB + 1 IBAK_NUMB = IBAK_NUMB + 1
...@@ -596,6 +604,12 @@ DO IMI = 1, NMODEL ...@@ -596,6 +604,12 @@ DO IMI = 1, NMODEL
END IF END IF
END DO END DO
! !
IF (LBAK_END) THEN
IBAK_NUMB = IBAK_NUMB + 1
IBAK_STEP(IBAK_NUMB) = NINT(XSEGLEN/DYN_MODEL(IMI)%XTSTEP)+1
IF (IMI == 1) IBAK_STEP(IBAK_NUMB) = IBAK_STEP(IBAK_NUMB) - ISUP
END IF
!
!* 2.3.2 Find and remove duplicated entries !* 2.3.2 Find and remove duplicated entries
! !
DO JOUT = 1,IBAK_NUMB DO JOUT = 1,IBAK_NUMB
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment