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 2345 for branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/FLO/floats.F90 – NEMO

Ignore:
Timestamp:
2010-10-29T18:08:41+02:00 (14 years ago)
Author:
gm
Message:

v3.3beta: FLO-compilation errors (to be done also on v3.2 \!)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/FLO/floats.F90

    r2287 r2345  
    1414   !!   flo_init  : initialization of float trajectories computation 
    1515   !!---------------------------------------------------------------------- 
     16   USE oce             ! ocean variables 
    1617   USE flo_oce         ! floats variables 
    1718   USE lib_mpp         ! distributed memory computing 
     
    2021   USE flo4rk          ! Trajectories, Runge Kutta scheme (flo_4rk routine) 
    2122   USE floblk          ! Trajectories, Blanke scheme      (flo_blk routine) 
     23   USE in_out_manager  ! I/O manager 
    2224 
    2325   IMPLICIT NONE 
     
    3032   !! NEMO/OPA 3.3 , NEMO Consortium (2010) 
    3133   !! $Id$  
    32    !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt) 
     34   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt) 
    3335   !!---------------------------------------------------------------------- 
    34  
    3536CONTAINS 
    3637 
     
    7980      !! ** Purpose :   Read the namelist of floats 
    8081      !!---------------------------------------------------------------------- 
    81       USE ioipsl 
    82       !! 
    8382      NAMELIST/namflo/ ln_rstflo, nn_writefl, nn_stockfl, ln_argo, ln_flork4  
    8483      !!--------------------------------------------------------------------- 
     
    9089         WRITE(numout,*) 
    9190         WRITE(numout,*) '         Namelist floats :' 
    92          WRITE(numout,*) '            restart                          ln_rstflo = ', ln_rstflo 
    93          WRITE(numout,*) '            frequency of float output file   nn_writefl  = ', nn_writefl 
    94          WRITE(numout,*) '            frequency of float restart file  nn_stockfl  = ', nn_stockfl 
    95          WRITE(numout,*) '            Argo type floats                 ln_argo   = ', ln_argo 
    96          WRITE(numout,*) '            Computation of T trajectories    ln_flork4 = ', ln_flork4 
     91         WRITE(numout,*) '            restart                          ln_rstflo  = ', ln_rstflo 
     92         WRITE(numout,*) '            frequency of float output file   nn_writefl = ', nn_writefl 
     93         WRITE(numout,*) '            frequency of float restart file  nn_stockfl = ', nn_stockfl 
     94         WRITE(numout,*) '            Argo type floats                 ln_argo    = ', ln_argo 
     95         WRITE(numout,*) '            Computation of T trajectories    ln_flork4  = ', ln_flork4 
    9796      ENDIF 
    9897      ! 
Note: See TracChangeset for help on using the changeset viewer.