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

Ignore:
Timestamp:
2019-04-29T13:50:19+02:00 (5 years ago)
Author:
davestorkey
Message:

2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps :

  1. Alter top-level TOP routines so they use the time-level indices from step.F90 rather than having their own time level indices.
  2. First part of changes for OFF modules.
File:
1 edited

Legend:

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

    r10880 r10905  
    4040CONTAINS 
    4141    
    42    SUBROUTINE trc_init 
     42   SUBROUTINE trc_init( Kbb, Kmm, Kaa ) 
    4343      !!--------------------------------------------------------------------- 
    4444      !!                     ***  ROUTINE trc_init  *** 
     
    5252      !!                or read data or analytical formulation 
    5353      !!--------------------------------------------------------------------- 
     54      !! Time level indices only required for call to update_pointers_trc 
     55      !! To be removed after IMMERSE development finished.  
     56      INTEGER, INTENT( in ) :: Kbb, Kmm, Kaa ! time level indices 
    5457      ! 
    5558      IF( ln_timing )   CALL timing_start('trc_init') 
     
    6366      CALL top_alloc()   ! allocate TOP arrays 
    6467 
    65       ! Initialise time level indices 
    66       Nbb = 1; Nnn = 2; Naa = 3; Nrhs = Naa 
    67  
    6868      ! Initialisation of temporary pointers (to be deleted after development finished) 
    69       CALL update_pointers_trc() 
     69      CALL update_pointers_trc( Kbb, Kmm, Kaa ) 
    7070      ! 
    7171      IF(.NOT.ln_trcdta )   ln_trc_ini(:) = .FALSE. 
Note: See TracChangeset for help on using the changeset viewer.