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 5193 for branches/2015/dev_r5171_CNRS_LIM3_seaicebgc/NEMOGCM/NEMO/TOP_SRC/trcice.F90 – NEMO

Ignore:
Timestamp:
2015-04-03T10:48:51+02:00 (9 years ago)
Author:
vancop
Message:

A few cosmetic changes before SETTE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5171_CNRS_LIM3_seaicebgc/NEMOGCM/NEMO/TOP_SRC/trcice.F90

    r5185 r5193  
    4949      NAMELIST/namtrc_ice/ nn_ice_tr 
    5050      ! 
    51       IF(lwp) WRITE(numout,*) 
    52       IF(lwp) WRITE(numout,*) 'trc_ice_ini : Initialize sea ice tracer boundary condition' 
    53       IF(lwp) WRITE(numout,*) '~~~~~~~~~~~~~' 
     51      IF(lwp) THEN 
     52         WRITE(numout,*) 
     53         WRITE(numout,*) 'trc_ice_ini : Initialize sea ice tracer boundary condition' 
     54         WRITE(numout,*) '~~~~~~~~~~~~~' 
     55      ENDIF 
    5456 
    5557      IF( nn_timing == 1 )  CALL timing_start('trc_ice_ini') 
    5658 
    57       IF(lwp) THEN 
    58          WRITE(numout,*) ' ' 
    59          WRITE(numout,*) ' sea ice tracers option (nn_ice_tr) : ', nn_ice_tr 
    60          WRITE(numout,*) ' ' 
    61       ENDIF 
    6259      ! 
    6360      REWIND( numnat_ref )              ! Namelist namtrc_dta in reference namelist : Passive tracer input data 
    6461      READ  ( numnat_ref, namtrc_ice, IOSTAT = ios, ERR = 901) 
    6562 901  IF( ios /= 0 ) CALL ctl_nam ( ios , ' namtrc_ice in reference namelist ', lwp ) 
     63 
     64      REWIND( numnat_cfg )              ! Namelist nampissbc in configuration namelist : Pisces external sources of nutrients 
     65      READ  ( numnat_cfg, namtrc_ice, IOSTAT = ios, ERR = 902 ) 
     66 902  IF( ios /= 0 ) CALL ctl_nam ( ios , 'namtrc_ice in configuration namelist', lwp ) 
     67 
     68      WRITE(numout,*) ' ' 
     69      WRITE(numout,*) ' Sea ice tracers option (nn_ice_tr) : ', nn_ice_tr 
     70      WRITE(numout,*) ' ' 
    6671 
    6772      trc_i(:,:,:) = 0.0d0 ! by default 
Note: See TracChangeset for help on using the changeset viewer.