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 10946 for NEMO/branches/2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps/src/OCE/TRA/traldf.F90 – NEMO

Ignore:
Timestamp:
2019-05-08T10:56:14+02:00 (5 years ago)
Author:
acc
Message:

2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps : Convert STO, TRD and USR modules and all knock on effects of these conversions. Note change to USR module may have implications for the TEST CASES (not tested yet). Standard SETTE tested only

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps/src/OCE/TRA/traldf.F90

    r10922 r10946  
    4747CONTAINS 
    4848 
    49    SUBROUTINE tra_ldf( kt, Kmm ) 
     49   SUBROUTINE tra_ldf( kt, Kmm, Krhs ) 
    5050      !!---------------------------------------------------------------------- 
    5151      !!                  ***  ROUTINE tra_ldf  *** 
     
    5454      !!---------------------------------------------------------------------- 
    5555      INTEGER, INTENT( in ) ::   kt   ! ocean time-step index 
    56       INTEGER, INTENT( in ) ::   Kmm  ! ocean time level indices 
     56      INTEGER, INTENT( in ) ::   Kmm, Krhs  ! ocean time level indices 
    5757      !! 
    5858      REAL(wp), ALLOCATABLE, DIMENSION(:,:,:) ::   ztrdt, ztrds 
     
    8181         ztrdt(:,:,:) = tsa(:,:,:,jp_tem) - ztrdt(:,:,:) 
    8282         ztrds(:,:,:) = tsa(:,:,:,jp_sal) - ztrds(:,:,:) 
    83          CALL trd_tra( kt, 'TRA', jp_tem, jptra_ldf, ztrdt ) 
    84          CALL trd_tra( kt, 'TRA', jp_sal, jptra_ldf, ztrds ) 
     83         CALL trd_tra( kt, Kmm, Krhs, 'TRA', jp_tem, jptra_ldf, ztrdt ) 
     84         CALL trd_tra( kt, Kmm, Krhs, 'TRA', jp_sal, jptra_ldf, ztrds ) 
    8585         DEALLOCATE( ztrdt, ztrds )  
    8686      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.