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 956 for trunk/NEMO/OFF_SRC/daymod.F90 – NEMO

Ignore:
Timestamp:
2008-05-14T18:46:05+02:00 (16 years ago)
Author:
cetlod
Message:

phasing the OFFLINE module to the new version of NEMO, see ticket 146

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OFF_SRC/daymod.F90

    r719 r956  
    2626      nday_year ,   &  !: curent day counted from jan 1st of the current year 
    2727      ndastp           !: time step date in year/month/day aammjj 
     28 
    2829   REAL(wp), PUBLIC ::   &  !: 
    2930       adatrj   ,   &  !: number of elapsed days since the begining of the run 
     
    3132       !               !  it is the accumulated duration of previous runs 
    3233       !               !  that may have been run with different time steps. 
     34 
     35   INTEGER, PUBLIC, DIMENSION(12) ::   nbiss = (/ 31, 29, 31, 30, 31, 30,    &  !: number of days per month 
     36      &                                           31, 31, 30, 31, 30, 31 /)     !: (leap-year) 
     37   INTEGER, PUBLIC, DIMENSION(12) ::   nobis = (/ 31, 28, 31, 30, 31, 30,    &  !: number of days per month 
     38      &                                           31, 31, 30, 31, 30, 31 /)     !: (365 days a year) 
     39 
    3340   !!---------------------------------------------------------------------- 
    3441   !!  OPA 9.0 , LOCEAN-IPSL (2005)  
Note: See TracChangeset for help on using the changeset viewer.