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 10009 for NEMO/branches/2018/dev_r9838_ENHANCE04_RK3/src/TOP/oce_trc.F90 – NEMO

Ignore:
Timestamp:
2018-07-29T11:23:51+02:00 (6 years ago)
Author:
gm
Message:

#1911 (ENHANCE-04): RK3 branch - step II.1 time-level dimension on ssh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2018/dev_r9838_ENHANCE04_RK3/src/TOP/oce_trc.F90

    r9939 r10009  
    88   !!---------------------------------------------------------------------- 
    99   !                                            !* Domain size * 
    10    USE par_oce , ONLY :   jpi      =>   jpi        !: first  dimension of grid --> i  
    11    USE par_oce , ONLY :   jpj      =>   jpj        !: second dimension of grid --> j   
    12    USE par_oce , ONLY :   jpk      =>   jpk        !: number of levels   
    13    USE par_oce , ONLY :   jpim1    =>   jpim1      !: jpi - 1 
    14    USE par_oce , ONLY :   jpjm1    =>   jpjm1      !: jpj - 1  
    15    USE par_oce , ONLY :   jpkm1    =>   jpkm1      !: jpk - 1   
    16    USE par_oce , ONLY :   jpij     =>   jpij       !: jpi x jpj 
    17    USE par_oce , ONLY :   jp_tem   =>   jp_tem     !: indice for temperature 
    18    USE par_oce , ONLY :   jp_sal   =>   jp_sal     !: indice for salinity 
     10   USE par_oce, ONLY :   jpi      =>   jpi        !: first  dimension of grid --> i  
     11   USE par_oce, ONLY :   jpj      =>   jpj        !: second dimension of grid --> j   
     12   USE par_oce, ONLY :   jpk      =>   jpk        !: number of levels   
     13   USE par_oce, ONLY :   jpim1    =>   jpim1      !: jpi - 1 
     14   USE par_oce, ONLY :   jpjm1    =>   jpjm1      !: jpj - 1  
     15   USE par_oce, ONLY :   jpkm1    =>   jpkm1      !: jpk - 1   
     16   USE par_oce, ONLY :   jpij     =>   jpij       !: jpi x jpj 
     17   USE par_oce, ONLY :   jp_tem   =>   jp_tem     !: indice for temperature 
     18   USE par_oce, ONLY :   jp_sal   =>   jp_sal     !: indice for salinity 
     19 
     20   USE par_oce, ONLY :   Nt       =>   Nt         !: number of time-levels 
     21   USE par_oce, ONLY :   Nbb      =>   Nbb        !: index for before time-level 
     22   USE par_oce, ONLY :   Nnn      =>   Nnn        !: index for now      -    - 
     23   USE par_oce, ONLY :   Naa      =>   Naa        !: index for after    -    -   
    1924 
    2025   USE in_out_manager                           !* IO manager * 
     
    4247   USE oce , ONLY :   rhd     =>    rhd     !: in situ density anomalie rhd=(rho-rho0)/rho0 (no units) 
    4348   USE oce , ONLY :   hdivn   =>    hdivn   !: horizontal divergence (1/s) 
    44    USE oce , ONLY :   sshn    =>    sshn    !: sea surface height at t-point [m]    
    45    USE oce , ONLY :   sshb    =>    sshb    !: sea surface height at t-point [m]    
    46    USE oce , ONLY :   ssha    =>    ssha    !: sea surface height at t-point [m]    
     49   USE oce , ONLY :   ssh     =>    ssh     !: sea surface height at t-point [m]    
    4750   USE oce , ONLY :   rab_n   =>    rab_n   !: local thermal/haline expension ratio at T-points 
    4851 
     
    9497   USE zdfmxl , ONLY :   hmlpt       =>   hmlpt       !: mixed layer depth at t-points (m) 
    9598 
     99   !!====================================================================== 
    96100END MODULE oce_trc 
Note: See TracChangeset for help on using the changeset viewer.