Ignore:
Timestamp:
Feb 22, 2017, 9:29:30 AM (7 years ago)
Author:
Laurent Fairhead
Message:

Upgrading time counter in the physics to a count of seconds from the start of the run.
The old counter made the model diverge when runs made in 4 months chunks were compared
to runs made in 1 month chunks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/physiq_mod.F90

    r2794 r2795  
    17351735    !
    17361736    itap   = itap + 1
    1737     IF (is_mpi_root .AND. is_omp_root) THEN
     1737    IF (is_master .OR. prt_level > 9) THEN
    17381738      IF (prt_level > 5 .or. MOD(itap,5) == 0) THEN
    1739          WRITE(LUNOUT,*)'Entering physics current time = ', current_time
    1740          WRITE(LUNOUT,*)'Date = ',year_cur,'/',mth_cur,'/',day_cur,':',hour/3600
     1739         WRITE(LUNOUT,*)'Entering physics elapsed seconds since start ', current_time
     1740         WRITE(LUNOUT,100)year_cur,mth_cur,day_cur,hour/3600.
     1741 100     FORMAT('Date = ',i4.4,' / ',i2.2, ' / ',i2.2,' : ',f20.17)
    17411742      ENDIF
    17421743    ENDIF
Note: See TracChangeset for help on using the changeset viewer.