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 8353 for branches/2015/nemo_v3_6_STABLE/NEMOGCM/NEMO/TOP_SRC/trcnam.F90 – NEMO

Ignore:
Timestamp:
2017-07-19T16:41:00+02:00 (7 years ago)
Author:
lovato
Message:

3.6 stable: update TOP modules and shared configuraton files for CMIP6 (#1925)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/nemo_v3_6_STABLE/NEMOGCM/NEMO/TOP_SRC/trcnam.F90

    r7873 r8353  
    7979      ENDIF 
    8080 
     81      ! Call the ice module for tracers 
     82      ! ------------------------------- 
     83      CALL trc_nam_ice 
     84 
     85      ! namelist of SMS 
     86      ! --------------- 
     87      IF( lk_pisces  ) THEN   ;   CALL trc_nam_pisces      ! PISCES  bio-model 
     88      ELSE                    ;   IF(lwp) WRITE(numout,*) '          PISCES not used' 
     89      ENDIF 
     90 
     91      IF( lk_my_trc  ) THEN  ;   CALL trc_nam_my_trc       ! MY_TRC  tracers 
     92      ELSE                   ;   IF(lwp) WRITE(numout,*)  '          MY_TRC not used' 
     93      ENDIF 
     94 
     95      IF( lk_cfc     ) THEN   ;   CALL trc_nam_cfc         ! CFC     tracers 
     96      ELSE                    ;   IF(lwp) WRITE(numout,*) '          CFC not used' 
     97      ENDIF 
     98 
     99      IF( lk_c14b    ) THEN  ;   CALL trc_nam_c14b         ! C14 bomb     tracers 
     100      ELSE                   ;   IF(lwp) WRITE(numout,*)  '          C14 not used' 
     101      ENDIF 
     102 
     103      IF( lk_age     ) THEN  ;   CALL trc_nam_age         ! AGE     tracer 
     104      ELSE                   ;   IF(lwp) WRITE(numout,*)  '          AGE not used' 
     105      ENDIF 
     106 
    81107     IF(lwp) THEN                   ! control print 
    82108         WRITE(numout,*) 
     
    119145      ENDIF 
    120146 
    121  
    122       ! Call the ice module for tracers 
    123       ! ------------------------------- 
    124       CALL trc_nam_ice 
    125  
    126       ! namelist of SMS 
    127       ! ---------------       
    128       IF( lk_pisces  ) THEN   ;   CALL trc_nam_pisces      ! PISCES  bio-model 
    129       ELSE                    ;   IF(lwp) WRITE(numout,*) '          PISCES not used' 
    130       ENDIF 
    131  
    132       IF( lk_cfc     ) THEN   ;   CALL trc_nam_cfc         ! CFC     tracers 
    133       ELSE                    ;   IF(lwp) WRITE(numout,*) '          CFC not used' 
    134       ENDIF 
    135  
    136       IF( lk_c14b    ) THEN  ;   CALL trc_nam_c14b         ! C14 bomb     tracers 
    137       ELSE                   ;   IF(lwp) WRITE(numout,*) '          C14 not used' 
    138       ENDIF 
    139  
    140       IF( lk_age     ) THEN  ;   CALL trc_nam_age         ! AGE     tracer 
    141       ELSE                   ;   IF(lwp) WRITE(numout,*) '          AGE not used' 
    142       ENDIF 
    143  
    144       IF( lk_my_trc  ) THEN  ;   CALL trc_nam_my_trc      ! MY_TRC  tracers 
    145       ELSE                   ;   IF(lwp) WRITE(numout,*) '          MY_TRC not used' 
    146       ENDIF 
    147147      ! 
    148148   END SUBROUTINE trc_nam 
Note: See TracChangeset for help on using the changeset viewer.