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 14072 for NEMO/trunk/src/OCE/TRD – NEMO

Ignore:
Timestamp:
2020-12-04T08:48:38+01:00 (4 years ago)
Author:
laurent
Message:

Merging branch "2020/dev_r13648_ASINTER-04_laurent_bulk_ice", ticket #2369

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/OCE/TRD/trdini.F90

    r13982 r14072  
    1717   USE trdglo         ! trends: global domain averaged tracers and dynamics 
    1818   USE trdmxl         ! trends: mixed layer averaged trends (tracer only) 
    19    USE trdvor         ! trends: vertical averaged vorticity  
     19   USE trdvor         ! trends: vertical averaged vorticity 
    2020   USE in_out_manager ! I/O manager 
    2121   USE lib_mpp        ! MPP library 
     
    3636      !!---------------------------------------------------------------------- 
    3737      !!                  ***  ROUTINE trd_init  *** 
    38       !!  
     38      !! 
    3939      !! ** Purpose :   Initialization of trend diagnostics 
    4040      !!---------------------------------------------------------------------- 
     
    4343      !! 
    4444      NAMELIST/namtrd/ ln_dyn_trd, ln_KE_trd, ln_vor_trd, ln_dyn_mxl,   & 
    45          &             ln_tra_trd, ln_PE_trd, ln_glo_trd, ln_tra_mxl, nn_trd  
     45         &             ln_tra_trd, ln_PE_trd, ln_glo_trd, ln_tra_mxl, nn_trd 
    4646      !!---------------------------------------------------------------------- 
    4747      ! 
     
    7070      ENDIF 
    7171      ! 
    72       !                             ! trend extraction flags   
    73       l_trdtra = .FALSE.                                                       ! tracers   
     72      !                             ! trend extraction flags 
     73      l_trdtra = .FALSE.                                                       ! tracers 
    7474      IF ( ln_tra_trd .OR. ln_PE_trd .OR. ln_tra_mxl .OR.   & 
    75          & ln_glo_trd                                       )   l_trdtra = .TRUE.  
     75         & ln_glo_trd                                       )   l_trdtra = .TRUE. 
    7676      ! 
    7777      l_trddyn = .FALSE.                                                       ! momentum 
     
    8080      ! 
    8181 
    82 !!gm check the stop below       
     82!!gm check the stop below 
    8383      IF( ln_dyn_mxl )   CALL ctl_stop( 'ML diag on momentum are not yet coded we stop' ) 
    8484      ! 
     
    9797 
    9898!!gm  : Potential BUG : 3D output only for vector invariant form!  add a ctl_stop or code the flux form case 
    99 !!gm  : bug/pb for vertical advection of tracer in vvl case: add T.dt[eta] in the output...  
     99!!gm  : bug/pb for vertical advection of tracer in vvl case: add T.dt[eta] in the output... 
    100100 
    101       !                             ! diagnostic initialization   
     101      !                             ! diagnostic initialization 
    102102      IF( ln_glo_trd )   CALL trd_glo_init( Kmm )      ! global domain averaged trends 
    103       IF( ln_tra_mxl )   CALL trd_mxl_init      ! mixed-layer          trends   
     103      IF( ln_tra_mxl )   CALL trd_mxl_init      ! mixed-layer          trends 
    104104      IF( ln_vor_trd )   CALL trd_vor_init      ! barotropic vorticity trends 
    105105      IF( ln_KE_trd  )   CALL trd_ken_init      ! 3D Kinetic    energy trends 
Note: See TracChangeset for help on using the changeset viewer.