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 7124 for branches/2016/dev_r7012_ROBUST5_CNRS/NEMOGCM/NEMO/TOP_SRC/trcini.F90 – NEMO

Ignore:
Timestamp:
2016-10-26T20:08:30+02:00 (8 years ago)
Author:
lovato
Message:

New top interface : revise initialisation routines and namelist_top_cfg in ORCA2_LIM3_TRC, see ticket #1782

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_r7012_ROBUST5_CNRS/NEMOGCM/NEMO/TOP_SRC/trcini.F90

    r7103 r7124  
    7070      ! 
    7171      CALL trc_ini_sms   ! SMS 
     72      CALL trc_ini_inv   ! Inventories 
    7273      CALL trc_ini_trp   ! passive tracers transport 
    7374      CALL trc_ice_ini   ! Tracers in sea ice 
     
    7879      IF( nn_dttrc /= 1 ) & 
    7980      CALL trc_sub_ini    ! Initialize variables for substepping passive tracers 
    80       CALL trc_ini_inv    ! Inventories 
    8181      ! 
    8282      IF( nn_timing == 1 )   CALL timing_stop('trc_init') 
     
    123123      IF(lwp) THEN               ! control print 
    124124         WRITE(numout,*) 
    125          WRITE(numout,*) 
    126          WRITE(numout,*) '          *** Total number of passive tracer jptra = ', jptra 
    127          WRITE(numout,*) '          *** Total volume of ocean                = ', areatot 
    128          WRITE(numout,*) '          *** Total inital content of all tracers ' 
     125         WRITE(numout,*) '  *** Total number of passive tracer jptra = ', jptra 
     126         WRITE(numout,*) '  *** Total volume of ocean                = ', areatot 
     127         WRITE(numout,*) '  *** Total inital content of all tracers ' 
    129128         WRITE(numout,*) 
    130129         DO jn = 1, jptra 
     
    140139         CALL prt_ctl_trc( tab4d=trn, mask=tmask, clinfo=ctrcnm ) 
    141140      ENDIF 
    142 9000  FORMAT(' tracer nb : ',i2,'      name :',a10,'      initial content :',e18.10) 
     1419000  FORMAT('  tracer nb : ',i2,'      name :',a10,'      initial content :',e18.10) 
    143142      ! 
    144143   END SUBROUTINE trc_ini_inv 
     
    177176      ! 
    178177      IF(lwp) THEN                   ! control print 
    179          WRITE(numout,*) 'ID     NAME     INI  SBC  CBC  OBC' 
     178         WRITE(numout,*) 
     179         WRITE(numout,*) ' trc_init: Summary for selected passive tracers' 
     180         WRITE(numout,*) ' ~~~~~~~~~~~~~~' 
     181         WRITE(numout,*) ' ID     NAME     INI  SBC  CBC  OBC' 
    180182         DO jn = 1, jptra 
    181183            WRITE(numout,9001) jn, TRIM(ctrcnm(jn)), ln_trc_ini(jn), ln_trc_sbc(jn),ln_trc_cbc(jn),ln_trc_obc(jn) 
    182184         END DO 
    183          WRITE(numout,*) ' ' 
    184185      ENDIF 
    185 9001  FORMAT(i3,1x,a10,3x,l2,3x,l2,3x,l2,3x,l2) 
     1869001  FORMAT(1x,i3,1x,a10,3x,l2,3x,l2,3x,l2,3x,l2) 
    186187      ! 
    187188   END SUBROUTINE trc_ini_sms 
Note: See TracChangeset for help on using the changeset viewer.