New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 6108 for branches/2015/dev_merge_2015/NEMOGCM/NEMO/OPA_SRC/DIA/dia25h.F90 – NEMO

Ignore:
Timestamp:
2015-12-17T19:21:15+01:00 (9 years ago)
Author:
lovato
Message:

dev_merge_2015 : Merge dev_CMCC_merge_2015

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_merge_2015/NEMOGCM/NEMO/OPA_SRC/DIA/dia25h.F90

    r6069 r6108  
    189189 
    190190      LOGICAL ::   ll_print = .FALSE.    ! =T print and flush numout 
    191       REAL(wp)                         ::   zsto, zout, zmax, zjulian, zdt, zmdi  ! temporary reals 
     191      REAL(wp)                         ::   zsto, zout, zmax, zjulian, zmdi       ! temporary reals 
    192192      INTEGER                          ::   i_steps                               ! no of timesteps per hour 
    193193      REAL(wp), DIMENSION(jpi,jpj    ) ::   zw2d, un_dm, vn_dm                    ! temporary workspace 
     
    201201      ! ----------------- 
    202202      ! Define frequency of summing to create 25 h mean 
    203       zdt = rdt 
    204       IF( nacc == 1 ) zdt = rdtmin 
    205  
    206       IF( MOD( 3600,INT(zdt) ) == 0 ) THEN 
    207          i_steps = 3600/INT(zdt) 
     203      IF( MOD( 3600,INT(rdt) ) == 0 ) THEN 
     204         i_steps = 3600/INT(rdt) 
    208205      ELSE 
    209206         CALL ctl_stop('STOP', 'dia_wri_tide: timestep must give MOD(3600,rdt) = 0 otherwise no hourly values are possible') 
Note: See TracChangeset for help on using the changeset viewer.