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 1715 for trunk/NEMO/OPA_SRC/DOM/dom_oce.F90 – NEMO

Ignore:
Timestamp:
2009-11-05T16:18:26+01:00 (14 years ago)
Author:
smasson
Message:

move daymod public variables in dom_oce, see ticket:590

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/DOM/dom_oce.F90

    r1601 r1715  
    6161   !!---------------------------------------------------------------------- 
    6262   !! space domain parameters 
    63    !! ----------------------- 
     63   !!---------------------------------------------------------------------- 
    6464   LOGICAL, PUBLIC ::   lzoom      =  .FALSE.   !: zoom flag 
    6565   LOGICAL, PUBLIC ::   lzoom_e    =  .FALSE.   !: East  zoom type flag 
     
    115115   !!---------------------------------------------------------------------- 
    116116   !! vertical coordinate and scale factors 
    117    !! -------------------------------------- 
     117   !! --------------------------------------------------------------------- 
    118118   !                                           !!* Namelist namzgr : vertical coordinate * 
    119119   LOGICAL, PUBLIC ::   ln_zco     =  .TRUE.    !: z-coordinate - full step 
     
    177177   !!---------------------------------------------------------------------- 
    178178   !! masks, bathymetry 
    179    !! ----------------- 
     179   !! --------------------------------------------------------------------- 
    180180   INTEGER , PUBLIC, DIMENSION(jpi,jpj) ::   mbathy    !: number of ocean level (=0, 1, ... , jpk-1) 
    181181   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   bathy     !: ocean depth (meters) 
     
    193193 
    194194   !!---------------------------------------------------------------------- 
     195   !! calendar variables 
     196   !! --------------------------------------------------------------------- 
     197   INTEGER , PUBLIC ::   nyear       !: current year 
     198   INTEGER , PUBLIC ::   nmonth      !: current month 
     199   INTEGER , PUBLIC ::   nday        !: current day of the month 
     200   INTEGER , PUBLIC ::   ndastp      !: time step date in yyyymmdd format 
     201   INTEGER , PUBLIC ::   nday_year   !: current day counted from jan 1st of the current year 
     202   REAL(wp), PUBLIC ::   rsec_year   !: current time step counted in second since 00h jan 1st of the current year 
     203   REAL(wp), PUBLIC ::   rsec_month  !: current time step counted in second since 00h 1st day of the current month 
     204   REAL(wp), PUBLIC ::   rsec_day    !: current time step counted in second since 00h of the current day 
     205   REAL(wp), PUBLIC ::   fjulday     !: julian day  
     206   REAL(wp), PUBLIC ::   adatrj      !: number of elapsed days since the begining of the whole simulation 
     207   !                                 !: (cumulative duration of previous runs that may have used different time-step size) 
     208   INTEGER , PUBLIC, DIMENSION(0: 1) ::   nyear_len    !: length in days of the previous/current year 
     209   INTEGER , PUBLIC, DIMENSION(0:13) ::   nmonth_len   !: length in days of the months of the current year 
     210   REAL(wp), PUBLIC, DIMENSION(0:13) ::   rmonth_half  !: second since Jan 1st 0h of the current year and the half of the months 
     211   REAL(wp), PUBLIC, DIMENSION(0:13) ::   rmonth_end   !: second since Jan 1st 0h of the current year and the end of the months 
     212   REAL(wp), PUBLIC                  ::   sec1jan000   !: second since Jan 1st 0h of nit000 year and Jan 1st 0h the current year 
     213 
     214   !!---------------------------------------------------------------------- 
    195215   !! agrif domain 
    196216   !!---------------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.