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 16 for trunk/NEMO/OPA_SRC/FLO/floats.F90 – NEMO

Ignore:
Timestamp:
2004-02-17T09:06:15+01:00 (20 years ago)
Author:
opalod
Message:

CT : UPDATE001 : First major NEMO update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/FLO/floats.F90

    r3 r16  
    6767      ENDIF 
    6868 
    69 # if defined key_mpp 
    70       CALL mppsync 
    71 # endif 
     69      IF( lk_mpp )   CALL mppsync   ! synchronization of all the processor 
     70 
    7271 
    7372      ! Writing and restart       
     
    9897 
    9998      !! * Local declarations 
    100       NAMELIST/namflo/ ln_rstarfl, nwritefl, nstockfl  
     99      NAMELIST/namflo/ ln_rstflo, nwritefl, nstockfl  
    101100      !!--------------------------------------------------------------------- 
    102101      ! Namelist namflo : floats 
    103102       
    104103      ! default values 
    105       ln_rstarfl  = .FALSE. 
     104      ln_rstflo  = .FALSE. 
    106105      nwritefl  = 150 
    107106      nstockfl  = 450 
     
    114113         WRITE(numout,*) ' ' 
    115114         WRITE(numout,*) '         Namelist floats :' 
    116          WRITE(numout,*) '            restart                          ln_rstarfl = ', ln_rstarfl 
    117          WRITE(numout,*) '            frequency of float output file   nwritefl   = ', nwritefl 
    118          WRITE(numout,*) '            frequency of float restart file  nstockfl   = ', nstockfl 
     115         WRITE(numout,*) '            restart                          ln_rstflo = ', ln_rstflo 
     116         WRITE(numout,*) '            frequency of float output file   nwritefl  = ', nwritefl 
     117         WRITE(numout,*) '            frequency of float restart file  nstockfl  = ', nstockfl 
    119118         WRITE(numout,*) ' ' 
    120119      ENDIF 
     
    128127CONTAINS 
    129128   SUBROUTINE flo_stp( kt )          ! Empty routine 
    130       WRITE(*,*) kt 
     129      WRITE(*,*) 'flo_stp: You should not have seen this print! error?', kt 
    131130   END SUBROUTINE flo_stp 
    132131#endif 
Note: See TracChangeset for help on using the changeset viewer.