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 11949 for NEMO/branches/2019/dev_r11943_MERGE_2019/src/TOP/oce_trc.F90 – NEMO

Ignore:
Timestamp:
2019-11-22T15:29:17+01:00 (4 years ago)
Author:
acc
Message:

Merge in changes from 2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps. This just creates a fresh copy of this branch to use as the merge base. See ticket #2341

Location:
NEMO/branches/2019/dev_r11943_MERGE_2019/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r11943_MERGE_2019/src

    • Property svn:mergeinfo deleted
  • NEMO/branches/2019/dev_r11943_MERGE_2019/src/TOP/oce_trc.F90

    r10351 r11949  
    88   !!---------------------------------------------------------------------- 
    99   !                                            !* Domain size * 
     10   USE par_oce , ONLY :   jpt      =>   jpt        !: time dimension 
    1011   USE par_oce , ONLY :   jpi      =>   jpi        !: first  dimension of grid --> i  
    1112   USE par_oce , ONLY :   jpj      =>   jpj        !: second dimension of grid --> j   
     
    3334 
    3435   !* ocean fields: here now and after fields * 
    35    USE oce , ONLY :   un      =>    un      !: i-horizontal velocity (m s-1)  
    36    USE oce , ONLY :   vn      =>    vn      !: j-horizontal velocity (m s-1) 
    37    USE oce , ONLY :   wn      =>    wn      !: vertical velocity (m s-1)   
    38    USE oce , ONLY :   tsn     =>    tsn     !: 4D array contaning ( tn, sn ) 
    39    USE oce , ONLY :   tsb     =>    tsb     !: 4D array contaning ( tb, sb ) 
    40    USE oce , ONLY :   tsa     =>    tsa     !: 4D array contaning ( ta, sa ) 
    41    USE oce , ONLY :   rhop    =>    rhop    !: potential volumic mass (kg m-3)  
    42    USE oce , ONLY :   rhd     =>    rhd     !: in situ density anomalie rhd=(rho-rau0)/rau0 (no units) 
    43    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]    
    47    USE oce , ONLY :   rab_n   =>    rab_n   !: local thermal/haline expension ratio at T-points 
     36   USE oce , ONLY :   uu     =>    uu     !: i-horizontal velocity (m s-1)  
     37   USE oce , ONLY :   vv     =>    vv     !: j-horizontal velocity (m s-1) 
     38   USE oce , ONLY :   ww     =>    ww     !: vertical velocity (m s-1)   
     39   USE oce , ONLY :   ts     =>    ts     !: 4D array contaning ( tn, sn ) 
     40   USE oce , ONLY :   rhop   =>    rhop   !: potential volumic mass (kg m-3)  
     41   USE oce , ONLY :   rhd    =>    rhd    !: in situ density anomalie rhd=(rho-rau0)/rau0 (no units) 
     42   USE oce , ONLY :   hdiv   =>    hdiv   !: horizontal divergence (1/s) 
     43   USE oce , ONLY :   ssh    =>    ssh    !: sea surface height at t-point [m]    
     44   USE oce , ONLY :   rab_n  =>    rab_n  !: local thermal/haline expension ratio at T-points 
    4845 
    4946   !* surface fluxes * 
Note: See TracChangeset for help on using the changeset viewer.