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 7332 – NEMO

Changeset 7332


Ignore:
Timestamp:
2016-11-25T09:38:58+01:00 (7 years ago)
Author:
cbricaud
Message:

crs branch cleaning

Location:
branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/OPA_SRC/CRS/crsdom.F90

    r7320 r7332  
    11661166         ENDDO 
    11671167 
     1168         !========================================================================== 
     1169         ! check 
     1170         !========================================================================== 
    11681171         !WRITE(narea+8000-1,*)"nfipproc(ji,jj),narea :",nfipproc(iproci,iprocj),narea 
    11691172         !WRITE(narea+8000-1,*)"proc i,j ",iproci,iprocj 
     
    11841187         !WRITE(narea+8000-1,*)"jpi_crs jpj_crs ",jpi_crs,jpj_crs 
    11851188         !WRITE(narea+8000-1,*)"glamt gphit ",glamt(1,1),gphit(jpi,jpj),glamt(jpi,jpj),gphit(jpi,jpj) 
     1189         !WRITE(narea+8000-1,*)"min max tmask ",MINVAL(tmask),MAXVAL(tmask) 
    11861190 
    11871191         !========================================================================== 
     
    15111515         END DO 
    15121516 
     1517         !========================================================================== 
     1518         ! check 
     1519         !========================================================================== 
    15131520         !WRITE(narea+8000-1,*)"loc crs jpi nldi,nlei,nlci ",jpi_crs, nldi_crs            ,nlei_crs             ,nlci_crs 
    15141521         !WRITE(narea+8000-1,*)"glo crs jpi nldi,nlei      ",jpi_crs, nldi_crs+nimpp_crs-1,nlei_crs+nimpp_crs-1 
     
    15161523         !WRITE(narea+8000-1,*)"glo crs jpj nldj,nlej      ",jpj_crs, nldj_crs+njmpp_crs-1,nlej_crs+njmpp_crs-1 
    15171524 
    1518          IF( jpizoom /= 1 .OR. jpjzoom /= 1)    STOP  !cbr mettre un ctlstp et ailleurs ( crsini ) 
    1519  
    15201525         !========================================================================== 
    15211526         ! Save the parent grid information 
    15221527         !========================================================================== 
     1528         IF( jpizoom /= 1 .OR. jpjzoom /= 1)    STOP  !cbr mettre un ctlstp et ailleurs ( crsini ) 
    15231529         jpi_full    = jpi 
    15241530         jpj_full    = jpj 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/OPA_SRC/ZDF/zdfmxl.F90

    r7256 r7332  
    9797         IF(lwp) WRITE(numout,*) '~~~~~~~ ' 
    9898         !                             ! allocate zdfmxl arrays 
    99          IF( zdf_mxl_alloc() /= 0 )   CALL ctl_stop( 'STOP', 'zdf_mxl : unable to allocate arrays' ) 
    10099      ENDIF 
    101100 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90

    r7256 r7332  
    655655      USE ldftra_oce, ONLY: ldftra_oce_alloc 
    656656      USE trc_oce   , ONLY: trc_oce_alloc 
     657      USE zdfmxl    , ONLY: zdf_mxl_alloc 
    657658#if defined key_diadct  
    658659      USE diadct    , ONLY: diadct_alloc  
     
    671672      ierr = ierr + ldftra_oce_alloc()          ! ocean lateral  physics : tracers 
    672673      ierr = ierr + zdf_oce_alloc   ()          ! ocean vertical physics 
     674      ierr = ierr + zdf_mxl_alloc   ()          ! mixed layer 
    673675      ! 
    674676      ierr = ierr + trc_oce_alloc   ()          ! shared TRC / TRA arrays 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/oce_trc.F90

    r7320 r7332  
    108108   USE crs , ONLY :   e3v        =>  e3v_n_crs         !: vertical scale factors v- 
    109109   USE crs , ONLY :   e3w        =>  e3w_n_crs         !: w-points (m) 
     110   USE crs , ONLY :   e3t_b      =>  e3t_b_crs         !: vertical scale factors at t- 
     111   USE crs , ONLY :   e3u_b      =>  e3u_b_crs         !: vertical scale factors at u- 
     112   USE crs , ONLY :   e3v_b      =>  e3v_b_crs         !: vertical scale factors v- 
     113   USE crs , ONLY :   e3w_b      =>  e3w_b_crs         !: w-points (m) 
    110114   USE crs , ONLY :   e3t_n      =>  e3t_n_crs         !: vertical scale factors at t- 
    111115   USE crs , ONLY :   e3u_n      =>  e3u_n_crs         !: vertical scale factors at u- 
     
    116120   USE crs , ONLY :   e3v_a      =>  e3v_a_crs         !: vertical scale factors v- 
    117121   USE crs , ONLY :   e3w_a      =>  e3w_a_crs         !: w-points (m) 
    118    USE crs , ONLY :   fse3t      =>  e3t_n_crs         !: vertical scale factors at t- 
    119    USE crs , ONLY :   fse3u      =>  e3u_n_crs         !: vertical scale factors at u- 
    120    USE crs , ONLY :   fse3v      =>  e3v_n_crs         !: vertical scale factors v- 
    121    USE crs , ONLY :   fse3w      =>  e3w_n_crs         !: w-points (m) 
    122122   USE crs , ONLY :   gdept      =>  gdept_n_crs       !: depth of t-points (m) 
    123123   USE crs , ONLY :   gdept_crs  =>  gdept_n_crs       !: depth of t-points (m) 
    124124   USE crs , ONLY :   gdept_n    =>  gdept_n_crs       !: depth of t-points (m) 
    125    USE crs , ONLY :   fse3t_b    =>  e3t_b_crs         !: vertical scale factors at t- 
    126    USE crs , ONLY :   fse3t_n    =>  e3t_n_crs         !: vertical scale factors at t- 
    127    USE crs , ONLY :   fse3t_a    =>  e3t_a_crs         !: vertical scale factors at t- 
    128    USE crs , ONLY :   fsdept_n   =>  gdept_n_crs       !: depth of t-points (m) 
    129125   USE crs , ONLY :   e3t_max_crs => e3t_max_n_crs 
    130126   USE crs , ONLY :   e3u_max_crs => e3u_max_n_crs 
     
    136132   USE crs , ONLY :   e3v        =>  e3v_0_crs         !: vertical scale factors v- 
    137133   USE crs , ONLY :   e3w        =>  e3w_0_crs         !: w-points (m) 
     134   USE crs , ONLY :   e3t_b      =>  e3t_0_crs         !: vertical scale factors at t- 
     135   USE crs , ONLY :   e3u_b      =>  e3u_0_crs         !: vertical scale factors at u- 
     136   USE crs , ONLY :   e3v_b      =>  e3v_0_crs         !: vertical scale factors v- 
     137   USE crs , ONLY :   e3w_b      =>  e3w_0_crs         !: w-points (m) 
    138138   USE crs , ONLY :   e3t_n      =>  e3t_0_crs         !: vertical scale factors at t- 
    139139   USE crs , ONLY :   e3u_n      =>  e3u_0_crs         !: vertical scale factors at u- 
     
    144144   USE crs , ONLY :   e3v_a      =>  e3v_0_crs         !: vertical scale factors v- 
    145145   USE crs , ONLY :   e3w_a      =>  e3w_0_crs         !: w-points (m) 
    146    USE crs , ONLY :   fse3t      =>  e3t_0_crs         !: vertical scale factors at t- 
    147    USE crs , ONLY :   fse3u      =>  e3u_0_crs         !: vertical scale factors at u- 
    148    USE crs , ONLY :   fse3v      =>  e3v_0_crs         !: vertical scale factors v- 
    149    USE crs , ONLY :   fse3w      =>  e3w_0_crs         !: w-points (m) 
    150146   USE crs , ONLY :   gdept      =>  gdept_0_crs       !: depth of t-points (m) 
    151147   USE crs , ONLY :   gdepw      =>  gdepw_0_crs       !: depth of t-points (m) 
     
    153149   USE crs , ONLY :   gdepw_crs  =>  gdepw_0_crs       !: depth of t-points (m) 
    154150   USE crs , ONLY :   gdept_n    =>  gdept_0_crs       !: depth of t-points (m) 
    155    USE crs , ONLY :   fse3t_b    =>  e3t_0_crs         !: vertical scale factors at t- 
    156    USE crs , ONLY :   fse3t_n    =>  e3t_0_crs         !: vertical scale factors at t- 
    157    USE crs , ONLY :   fse3t_a    =>  e3t_0_crs         !: vertical scale factors at t- 
    158    USE crs , ONLY :   fsdept_n   =>  gdept_0_crs       !: depth of t-points (m) 
    159151   USE crs , ONLY :   e3t_max_crs => e3t_max_0_crs 
    160152   USE crs , ONLY :   e3u_max_crs => e3u_max_0_crs 
     
    167159   USE crs , ONLY :   e3w_0        =>  e3w_0_crs         !: vertical scale factors at t- 
    168160 
    169    USE crs , ONLY :   ff         =>  ff_crs         !: f-points (m) 
    170    USE crs , ONLY :   gdept_0    =>  gdept_0_crs       !: depth of t-points (m) 
     161   USE crs , ONLY     :   ff         =>  ff_crs         !: f-points (m) 
     162   USE crs , ONLY     :   gdept_0    =>  gdept_0_crs       !: depth of t-points (m) 
    171163   USE dom_oce , ONLY :   gdept_1d   =>  gdept_1d      !: depth of t-points (m) 
    172164#if defined key_zco 
     
    185177 
    186178 !* ocean fields: here now and after fields * 
    187 !cbr?   USE crs , ONLY :   ua      =>    ua_crs      !: i-horizontal velocity (m s-1)  
    188 !cbr?   USE crs , ONLY :   va      =>    va_crs      !: j-horizontal velocity (m s-1) 
    189179   USE crs , ONLY :   un      =>    un_crs      !: i-horizontal velocity (m s-1)  
    190180   USE crs , ONLY :   vn      =>    vn_crs      !: j-horizontal velocity (m s-1) 
     
    228218#endif 
    229219 
    230 !cbr   USE trc_oce 
    231220   USE trc_oce, ONLY : lk_offline 
    232221   USE trc_oce, ONLY : nn_dttrc 
     
    316305   USE dom_oce , ONLY :   e3t_0      =>  e3t_0         !: vertical scale factors at t- 
    317306#if defined key_vvl  
    318    USE dom_oce , ONLY :   fse3t_b    =>  e3t_b 
    319    USE dom_oce , ONLY :   fse3t_n    =>  e3t_n 
    320    USE dom_oce , ONLY :   fse3t      =>  e3t_n 
    321    USE dom_oce , ONLY :   fse3u      =>  e3u_n 
    322    USE dom_oce , ONLY :   fse3v      =>  e3v_n 
    323    USE dom_oce , ONLY :   fse3w      =>  e3w_n 
    324    USE dom_oce , ONLY :   fse3t_a    =>  e3t_a 
    325307   USE dom_oce , ONLY :     e3t_b    =>  e3t_b 
    326308   USE dom_oce , ONLY :     e3t_n    =>  e3t_n 
     
    337319   USE dom_oce , ONLY :   e3f        =>  e3f_n         !: f-points (m) 
    338320   USE dom_oce , ONLY :   gdept_n    =>  gdept_n         !: f-points (m) 
    339    USE dom_oce , ONLY :  fsdept_n    =>  gdept_n         !: f-points (m) 
    340321#else 
    341322   USE dom_oce , ONLY :   fse3t_n    =>  e3t_0 
     
    394375 
    395376   !* model domain * 
    396    !cbr USE dom_oce , ONLY : e3w_0 
    397377   USE dom_oce , ONLY :  lzoom => lzoom  
    398378 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/trcdta.F90

    r7256 r7332  
    3737!$AGRIF_END_DO_NOT_TREAT 
    3838   !! * Substitutions 
    39 !cbr #  include "domzgr_substitute.h90" 
     39#  include "domzgr_substitute.h90" 
    4040   !!---------------------------------------------------------------------- 
    4141   !! NEMO/OPA 3.3 , NEMO Consortium (2010) 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/trcstp.F90

    r7256 r7332  
    7676      IF( l_trcdm2dc )   CALL trc_mean_qsr( kt ) 
    7777      !     
    78 !cbr      IF( nn_dttrc /= 1 )   CALL trc_sub_stp( kt )  ! averaging physical variables for sub-stepping 
     78      IF( nn_dttrc /= 1 )   CALL trc_sub_stp( kt )  ! averaging physical variables for sub-stepping 
    7979      !     
    8080      IF( MOD( kt , nn_dttrc ) == 0 ) THEN      ! only every nn_dttrc time step 
     
    102102         IF( lk_trdmxl_trc  )      CALL trd_mxl_trc  ( kt )       ! trends: Mixed-layer 
    103103         ! 
    104 !cbr         IF( nn_dttrc /= 1   )     CALL trc_sub_reset( kt )       ! resetting physical variables when sub-stepping 
     104         IF( nn_dttrc /= 1   )     CALL trc_sub_reset( kt )       ! resetting physical variables when sub-stepping 
    105105         ! 
    106106      ENDIF 
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/TOP_SRC/trcsub.F90

    r7256 r7332  
    3939 
    4040   !!* Substitution 
    41 !!#  include "top_substitute.h90" 
     41#  include "top_substitute.h90" 
    4242   !!---------------------------------------------------------------------- 
    4343   !! NEMO/TOP 3.3 , NEMO Consortium (2010) 
Note: See TracChangeset for help on using the changeset viewer.