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 10975 for NEMO/branches/2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps/src/TOP/trcini.F90 – NEMO

Ignore:
Timestamp:
2019-05-13T18:34:33+02:00 (5 years ago)
Author:
acc
Message:

2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps : Finish converting all TOP routines and knock-on effects of these conversions. Fully SETTE tested (SETTE tests 1-6 and 9). This completes the first stage conversion of TRA and TOP but need to revisit and pass ts and tr arrays through the argument lists where appropriate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps/src/TOP/trcini.F90

    r10963 r10975  
    7575      IF(lwp) WRITE(numout,*) 
    7676      ! 
    77       CALL trc_ini_sms   ! SMS 
    78       CALL trc_ini_trp   ! passive tracers transport 
    79       CALL trc_ice_ini   ! Tracers in sea ice 
     77      CALL trc_ini_sms( Kmm )   ! SMS 
     78      CALL trc_ini_trp          ! passive tracers transport 
     79      CALL trc_ice_ini          ! Tracers in sea ice 
    8080      ! 
    8181      IF( lwm .AND. sn_cfctl%l_trcstat ) THEN 
     
    159159 
    160160 
    161    SUBROUTINE trc_ini_sms 
     161   SUBROUTINE trc_ini_sms( Kmm ) 
    162162      !!---------------------------------------------------------------------- 
    163163      !!                     ***  ROUTINE trc_ini_sms  *** 
     
    170170      USE trcini_my_trc  ! MY_TRC   initialisation 
    171171      ! 
     172      INTEGER, INTENT(in) ::   Kmm ! time level indices 
    172173      INTEGER :: jn 
    173174      !!---------------------------------------------------------------------- 
     
    184185      END DO 
    185186      !     
    186       IF( ln_pisces      )   CALL trc_ini_pisces     !  PISCES model 
    187       IF( ln_my_trc      )   CALL trc_ini_my_trc     !  MY_TRC model 
    188       IF( ll_cfc         )   CALL trc_ini_cfc        !  CFC's 
    189       IF( ln_c14         )   CALL trc_ini_c14        !  C14 model 
    190       IF( ln_age         )   CALL trc_ini_age        !  AGE 
     187      IF( ln_pisces      )   CALL trc_ini_pisces( Kmm )     !  PISCES model 
     188      IF( ln_my_trc      )   CALL trc_ini_my_trc( Kmm )     !  MY_TRC model 
     189      IF( ll_cfc         )   CALL trc_ini_cfc   ( Kmm )     !  CFC's 
     190      IF( ln_c14         )   CALL trc_ini_c14   ( Kmm )     !  C14 model 
     191      IF( ln_age         )   CALL trc_ini_age   ( Kmm )     !  AGE 
    191192      IF( .NOT.ln_pisces ) ALLOCATE( profsed(2) ) 
    192193      ! 
Note: See TracChangeset for help on using the changeset viewer.