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.
user/flavoni/libIGCM (diff) – NEMO

Changes between Version 131 and Version 132 of user/flavoni/libIGCM


Ignore:
Timestamp:
2009-01-23T16:15:51+01:00 (15 years ago)
Author:
flavoni
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • user/flavoni/libIGCM

    v131 v132  
    296296 '''RESOL=''' 
    297297 
     298 * '''domain.F90''' 
     299 
     300 difference with the old one: 
     301 
     302 in line 171 
     303 
     304 WRITE(numout,*) '           leap year calendar (0/1/'''30''')     nleapy    = ', nleapy 
     305 
     306 * nemo.driver 
     307 
     308 difference with the old one: 
     309  
     310 added nleapy variable that corresponds to nbisex on opa.driver 
     311 
     312 '''# nleapy leap year calendar (0/1) (30 for 360d)''' 
     313 
     314 '''PAT_NLEAPY=$( supergrep nleapy    ${SUBMIT_DIR}/PARAM/namelist )''' 
     315 
     316 in lines 141-151 
     317 
     318 case ${config_UserChoices_CalendarType} in 
     319               leap) 
     320               ORCA_NLEAPY=1;; 
     321               noleap) 
     322               ORCA_NLEAPY=0;; 
     323               360d) 
     324               ORCA_NLEAPY=30;; 
     325       esac 
     326 
     327 in line 158 
     328 
     329 -e "s%${PAT_NLEAPY}%       nleapy=${ORCA_NLEAPY}%"                    \ 
     330 
    298331 * '''fldread.F90''' 
    299332