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 6041 for branches/2015/dev_r5776_UKMO2_OBS_efficiency_improvs/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2015-12-14T10:06:06+01:00 (8 years ago)
Author:
timgraham
Message:

Merged head of trunk into branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5776_UKMO2_OBS_efficiency_improvs/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90

    r5656 r6041  
    2828   !!             -   ! 2010-10  (C. Ethe, G. Madec) reorganisation of initialisation phase 
    2929   !!            3.3.1! 2011-01  (A. R. Porter, STFC Daresbury) dynamical allocation 
    30    !!            3.4  ! 2011-11  (C. Harris) decomposition changes for running with CICE 
    31    !!                 ! 2012-05  (C. Calone, J. Simeon, G. Madec, C. Ethe) Add grid coarsening  
     30   !!            3.4  ! 2011-10  (A. C. Coward, NOCS & J. Donners, PRACE) add nemo_northcomms 
     31   !!             -   ! 2011-11  (C. Harris) decomposition changes for running with CICE 
     32   !!            3.6  ! 2012-05  (C. Calone, J. Simeon, G. Madec, C. Ethe) Add grid coarsening  
     33   !!             -   ! 2013-06  (I. Epicoco, S. Mocavero, CMCC) nemo_northcomms: setup avoiding MPI communication  
     34   !!             -   ! 2014-12  (G. Madec) remove KPP scheme and cross-land advection (cla) 
    3235   !!---------------------------------------------------------------------- 
    3336 
     
    4144   !!   factorise      : calculate the factors of the no. of MPI processes 
    4245   !!---------------------------------------------------------------------- 
    43    USE step_oce        ! module used in the ocean time stepping module 
    44    USE cla             ! cross land advection               (tra_cla routine) 
     46   USE step_oce        ! module used in the ocean time stepping module (step.F90) 
    4547   USE domcfg          ! domain configuration               (dom_cfg routine) 
    4648   USE mppini          ! shared/distributed memory setting (mpp_init routine) 
     
    7779   USE lib_mpp         ! distributed memory computing 
    7880#if defined key_iomput 
    79    USE xios 
    80 #endif 
    81    USE sbctide, ONLY: lk_tide 
     81   USE xios            ! xIOserver 
     82#endif 
     83   USE sbctide, ONLY   : lk_tide 
    8284   USE crsini          ! initialise grid coarsening utility 
    83    USE lbcnfd, ONLY: isendto, nsndto, nfsloop, nfeloop ! Setup of north fold exchanges  
    84    USE sbc_oce, ONLY: lk_oasis 
     85   USE lbcnfd , ONLY   : isendto, nsndto, nfsloop, nfeloop  ! Setup of north fold exchanges  
     86   USE sbc_oce, ONLY   : lk_oasis 
    8587   USE stopar 
    8688   USE stopts 
     
    9698 
    9799   !!---------------------------------------------------------------------- 
    98    !! NEMO/OPA 4.0 , NEMO Consortium (2011) 
     100   !! NEMO/OPA 3.7 , NEMO Consortium (2015) 
    99101   !! $Id$ 
    100102   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt) 
     
    191193      ! 
    192194#if defined key_agrif 
    193       IF( .NOT. Agrif_Root() ) THEN 
    194          CALL Agrif_ParentGrid_To_ChildGrid() 
    195          IF( lk_diaobs ) CALL dia_obs_wri 
     195      IF(.NOT.Agrif_Root() ) THEN 
     196                                CALL Agrif_ParentGrid_To_ChildGrid() 
     197         IF( lk_diaobs )        CALL dia_obs_wri 
    196198         IF( nn_timing == 1 )   CALL timing_finalize 
    197          CALL Agrif_ChildGrid_To_ParentGrid() 
     199                                CALL Agrif_ChildGrid_To_ParentGrid() 
    198200      ENDIF 
    199201#endif 
     
    203205      ! 
    204206#if defined key_iomput 
    205       CALL xios_finalize                ! end mpp communications with xios 
    206       IF( lk_oasis ) CALL cpl_finalize    ! end coupling and mpp communications with OASIS 
     207      CALL xios_finalize                  ! end mpp communications with xios 
     208      IF( lk_oasis )   CALL cpl_finalize  ! end coupling and mpp communications with OASIS 
    207209#else 
    208210      IF( lk_oasis ) THEN  
     
    319321      ! If dimensions of processor grid weren't specified in the namelist file 
    320322      ! then we calculate them here now that we have our communicator size 
    321       IF( (jpni < 1) .OR. (jpnj < 1) )THEN 
     323      IF( jpni < 1 .OR. jpnj < 1 ) THEN 
    322324#if   defined key_mpp_mpi 
    323          IF( Agrif_Root() ) CALL nemo_partition(mppsize) 
     325         IF( Agrif_Root() )   CALL nemo_partition( mppsize ) 
    324326#else 
    325327         jpni  = 1 
     
    327329         jpnij = jpni*jpnj 
    328330#endif 
    329       END IF 
     331      ENDIF 
    330332 
    331333      ! Calculate domain dimensions given calculated jpni and jpnj 
    332       ! This used to be done in par_oce.F90 when they were parameters rather 
    333       ! than variables 
     334      ! This used to be done in par_oce.F90 when they were parameters rather than variables 
    334335      IF( Agrif_Root() ) THEN 
    335336#if defined key_nemocice_decomp 
    336          jpi = ( nx_global+2-2*jpreci + (jpni-1) ) / jpni + 2*jpreci ! first  dim. 
    337          jpj = ( ny_global+2-2*jprecj + (jpnj-1) ) / jpnj + 2*jprecj ! second dim.  
     337         jpi = ( nx_global+2-2*jpreci + (jpni-1) ) / jpni + 2*jpreci    ! first  dim. 
     338         jpj = ( ny_global+2-2*jprecj + (jpnj-1) ) / jpnj + 2*jprecj    ! second dim.  
    338339#else 
    339          jpi = ( jpiglo-2*jpreci + (jpni-1) ) / jpni + 2*jpreci   ! first  dim. 
    340          jpj = ( jpjglo-2*jprecj + (jpnj-1) ) / jpnj + 2*jprecj   ! second dim. 
     340         jpi = ( jpiglo     -2*jpreci + (jpni-1) ) / jpni + 2*jpreci    ! first  dim. 
     341         jpj = ( jpjglo     -2*jprecj + (jpnj-1) ) / jpnj + 2*jprecj    ! second dim. 
    341342#endif 
    342343      ENDIF          
    343344         jpk = jpkdta                                             ! third dim 
    344345#if defined key_agrif 
    345          ! simple trick to use same vertical grid as parent 
    346          ! but different number of levels:  
    347          ! Save maximum number of levels in jpkdta, then define all vertical grids 
    348          ! with this number. 
     346         ! simple trick to use same vertical grid as parent but different number of levels:  
     347         ! Save maximum number of levels in jpkdta, then define all vertical grids with this number. 
    349348         ! Suppress once vertical online interpolation is ok 
    350          IF(.NOT.Agrif_Root()) jpkdta = Agrif_Parent(jpkdta) 
     349         IF(.NOT.Agrif_Root())   jpkdta = Agrif_Parent( jpkdta ) 
    351350#endif 
    352351         jpim1 = jpi-1                                            ! inner domain indices 
     
    363362         WRITE(numout,*) '                       NEMO team' 
    364363         WRITE(numout,*) '            Ocean General Circulation Model' 
    365          WRITE(numout,*) '                  version 3.6  (2015) ' 
     364         WRITE(numout,*) '                  version 3.7  (2015) ' 
    366365         WRITE(numout,*) 
    367366         WRITE(numout,*) 
     
    396395                            CALL     dom_cfg    ! Domain configuration 
    397396                            CALL     dom_init   ! Domain 
    398  
    399       IF( ln_nnogather )    CALL nemo_northcomms   ! Initialise the northfold neighbour lists (must be done after the masks are defined) 
    400  
     397      IF( ln_crs        )   CALL     crs_init   ! coarsened grid: domain initialization  
     398      IF( ln_nnogather )    CALL nemo_northcomms! northfold neighbour lists (must be done after the masks are defined) 
    401399      IF( ln_ctl        )   CALL prt_ctl_init   ! Print control 
    402  
    403400                            CALL  istate_init   ! ocean initial state (Dynamics and tracers) 
    404401 
    405       IF( lk_tide       )   CALL    tide_init( nit000 )    ! Initialisation of the tidal harmonics 
    406  
    407                             CALL     sbc_init   ! Forcings : surface module (clem: moved here for bdy purpose) 
    408  
     402      !                                      ! external forcing  
     403!!gm to be added : creation and call of sbc_apr_init 
     404      IF( lk_tide       )   CALL    tide_init( nit000 )    ! tidal harmonics 
     405                            CALL     sbc_init   ! surface boundary conditions (including sea-ice) 
     406!!gm ==>> bdy_init should call bdy_dta_init and bdytide_init  NOT in nemogcm !!! 
    409407      IF( lk_bdy        )   CALL     bdy_init   ! Open boundaries initialisation 
    410408      IF( lk_bdy        )   CALL bdy_dta_init   ! Open boundaries initialisation of external data arrays 
    411409      IF( lk_bdy .AND. lk_tide )   & 
    412410         &                  CALL bdytide_init   ! Open boundaries initialisation of tidal harmonic forcing 
    413  
    414                             CALL dyn_nept_init  ! simplified form of Neptune effect 
    415       !      
    416       IF( ln_crs        )   CALL     crs_init   ! Domain initialization of coarsened grid 
    417       ! 
    418                                 ! Ocean physics 
     411          
     412      !                                      ! Ocean physics 
    419413      !                                         ! Vertical physics 
    420414                            CALL     zdf_init      ! namelist read 
     
    423417      IF( lk_zdftke     )   CALL zdf_tke_init      ! TKE closure scheme 
    424418      IF( lk_zdfgls     )   CALL zdf_gls_init      ! GLS closure scheme 
    425       IF( lk_zdfkpp     )   CALL zdf_kpp_init      ! KPP closure scheme 
    426419      IF( lk_zdftmx     )   CALL zdf_tmx_init      ! tidal vertical mixing 
    427       IF( lk_zdfddm .AND. .NOT. lk_zdfkpp )   & 
    428          &                  CALL zdf_ddm_init      ! double diffusive mixing 
     420      IF( lk_zdfddm     )   CALL zdf_ddm_init      ! double diffusive mixing 
     421          
    429422      !                                         ! Lateral physics 
    430423                            CALL ldf_tra_init      ! Lateral ocean tracer physics 
     424                            CALL ldf_eiv_init      ! eddy induced velocity param. 
    431425                            CALL ldf_dyn_init      ! Lateral ocean momentum physics 
    432       IF( lk_ldfslp     )   CALL ldf_slp_init      ! slope of lateral mixing 
    433  
    434       !                                     ! Active tracers 
    435                             CALL tra_qsr_init   ! penetrative solar radiation qsr 
    436                             CALL tra_bbc_init   ! bottom heat flux 
    437       IF( lk_trabbl     )   CALL tra_bbl_init   ! advective (and/or diffusive) bottom boundary layer scheme 
    438                             CALL tra_dmp_init   ! internal damping trends- tracers 
    439                             CALL tra_adv_init   ! horizontal & vertical advection 
    440                             CALL tra_ldf_init   ! lateral mixing 
    441                             CALL tra_zdf_init   ! vertical mixing and after tracer fields 
    442  
    443       !                                     ! Dynamics 
    444       IF( lk_c1d        )   CALL dyn_dmp_init   ! internal damping trends- momentum 
    445                             CALL dyn_adv_init   ! advection (vector or flux form) 
    446                             CALL dyn_vor_init   ! vorticity term including Coriolis 
    447                             CALL dyn_ldf_init   ! lateral mixing 
    448                             CALL dyn_hpg_init   ! horizontal gradient of Hydrostatic pressure 
    449                             CALL dyn_zdf_init   ! vertical diffusion 
    450                             CALL dyn_spg_init   ! surface pressure gradient 
    451  
    452       !                                     ! Misc. options 
    453       IF( nn_cla == 1 .AND. cp_cfg == 'orca' .AND. jp_cfg == 2 )   CALL cla_init       ! Cross Land Advection 
     426 
     427      !                                         ! Active tracers 
     428                            CALL tra_qsr_init      ! penetrative solar radiation qsr 
     429                            CALL tra_bbc_init      ! bottom heat flux 
     430      IF( lk_trabbl     )   CALL tra_bbl_init      ! advective (and/or diffusive) bottom boundary layer scheme 
     431                            CALL tra_dmp_init      ! internal tracer damping 
     432                            CALL tra_adv_init      ! horizontal & vertical advection 
     433                            CALL tra_ldf_init      ! lateral mixing 
     434                            CALL tra_zdf_init      ! vertical mixing and after tracer fields 
     435 
     436      !                                         ! Dynamics 
     437      IF( lk_c1d        )   CALL dyn_dmp_init      ! internal momentum damping 
     438                            CALL dyn_adv_init      ! advection (vector or flux form) 
     439                            CALL dyn_vor_init      ! vorticity term including Coriolis 
     440                            CALL dyn_ldf_init      ! lateral mixing 
     441                            CALL dyn_hpg_init      ! horizontal gradient of Hydrostatic pressure 
     442                            CALL dyn_zdf_init      ! vertical diffusion 
     443                            CALL dyn_spg_init      ! surface pressure gradient 
     444 
     445#if defined key_top 
     446      !                                      ! Passive tracers 
     447                            CALL     trc_init 
     448#endif 
     449      IF( l_ldfslp      )   CALL ldf_slp_init   ! slope of lateral mixing 
     450 
     451      !                                      ! Icebergs 
    454452                            CALL icb_init( rdt, nit000)   ! initialise icebergs instance 
     453 
     454      !                                      ! Misc. options 
    455455                            CALL sto_par_init   ! Stochastic parametrization 
    456456      IF( ln_sto_eos     )  CALL sto_pts_init   ! RRandom T/S fluctuations 
    457457      
    458 #if defined key_top 
    459       !                                     ! Passive tracers 
    460                             CALL     trc_init 
    461 #endif 
    462       !                                     ! Diagnostics 
     458      !                                      ! Diagnostics 
    463459      IF( lk_floats     )   CALL     flo_init   ! drifting Floats 
    464460      IF( lk_diaar5     )   CALL dia_ar5_init   ! ar5 diag 
     
    471467                            CALL dia_obs( nit000 - 1 )   ! Observation operator for restart 
    472468      ENDIF 
    473  
    474       !                                     ! Assimilation increments 
     469      !                                      ! Assimilation increments 
    475470      IF( lk_asminc     )   CALL asm_inc_init   ! Initialize assimilation increments 
    476471      IF(lwp) WRITE(numout,*) 'Euler time step switch is ', neuler 
     
    519514         WRITE(numout,*) '~~~~~~~ ' 
    520515         WRITE(numout,*) '   Namelist namcfg' 
    521          WRITE(numout,*) '      configuration name              cp_cfg      = ', TRIM(cp_cfg) 
    522          WRITE(numout,*) '      configuration zoom name         cp_cfz      = ', TRIM(cp_cfz) 
    523          WRITE(numout,*) '      configuration resolution        jp_cfg      = ', jp_cfg 
    524          WRITE(numout,*) '      1st lateral dimension ( >= jpi ) jpidta     = ', jpidta 
    525          WRITE(numout,*) '      2nd    "         "    ( >= jpj ) jpjdta     = ', jpjdta 
    526          WRITE(numout,*) '      3nd    "         "               jpkdta     = ', jpkdta 
    527          WRITE(numout,*) '      1st dimension of global domain in i jpiglo  = ', jpiglo 
    528          WRITE(numout,*) '      2nd    -                  -    in j jpjglo  = ', jpjglo 
     516         WRITE(numout,*) '      configuration name                               cp_cfg  = ', TRIM(cp_cfg) 
     517         WRITE(numout,*) '      configuration zoom name                          cp_cfz  = ', TRIM(cp_cfz) 
     518         WRITE(numout,*) '      configuration resolution                         jp_cfg  = ', jp_cfg 
     519         WRITE(numout,*) '      1st lateral dimension ( >= jpiglo )              jpidta  = ', jpidta 
     520         WRITE(numout,*) '      2nd    "         "    ( >= jpjglo )              jpjdta  = ', jpjdta 
     521         WRITE(numout,*) '      3nd    "         "                               jpkdta  = ', jpkdta 
     522         WRITE(numout,*) '      1st dimension of global domain in i              jpiglo  = ', jpiglo 
     523         WRITE(numout,*) '      2nd    -                  -    in j              jpjglo  = ', jpjglo 
    529524         WRITE(numout,*) '      left bottom i index of the zoom (in data domain) jpizoom = ', jpizoom 
    530525         WRITE(numout,*) '      left bottom j index of the zoom (in data domain) jpizoom = ', jpjzoom 
    531          WRITE(numout,*) '      lateral cond. type (between 0 and 6) jperio = ', jperio    
     526         WRITE(numout,*) '      lateral cond. type (between 0 and 6)             jperio = ', jperio    
    532527         WRITE(numout,*) '      use file attribute if exists as i/p j-start ln_use_jattr = ', ln_use_jattr 
    533528      ENDIF 
     
    610605      IF( numdct_heat     /= -1 )   CLOSE( numdct_heat     )   ! heat transports 
    611606      IF( numdct_salt     /= -1 )   CLOSE( numdct_salt     )   ! salt transports 
    612  
    613607      ! 
    614608      numout = 6                                     ! redefine numout in case it is used after this point... 
     
    627621      USE diawri    , ONLY: dia_wri_alloc 
    628622      USE dom_oce   , ONLY: dom_oce_alloc 
    629       USE ldfdyn_oce, ONLY: ldfdyn_oce_alloc 
    630       USE ldftra_oce, ONLY: ldftra_oce_alloc 
    631623      USE trc_oce   , ONLY: trc_oce_alloc 
    632624#if defined key_diadct  
     
    643635      ierr = ierr + dia_wri_alloc   () 
    644636      ierr = ierr + dom_oce_alloc   ()          ! ocean domain 
    645       ierr = ierr + ldfdyn_oce_alloc()          ! ocean lateral  physics : dynamics 
    646       ierr = ierr + ldftra_oce_alloc()          ! ocean lateral  physics : tracers 
    647637      ierr = ierr + zdf_oce_alloc   ()          ! ocean vertical physics 
    648638      ! 
     
    724714      INTEGER :: ifac, jl, inu 
    725715      INTEGER, PARAMETER :: ntest = 14 
    726       INTEGER, DIMENSION(ntest) :: ilfax 
    727       !!---------------------------------------------------------------------- 
     716      INTEGER, DIMENSION(ntest) ::   ilfax 
     717      !!---------------------------------------------------------------------- 
     718      ! 
    728719      ! lfax contains the set of allowed factors. 
    729720      ilfax(:) = (/(2**jl,jl=ntest,1,-1)/) 
    730  
     721      ! 
    731722      ! Clear the error flag and initialise output vars 
    732       kerr = 0 
    733       kfax = 1 
     723      kerr  = 0 
     724      kfax  = 1 
    734725      knfax = 0 
    735  
     726      ! 
    736727      ! Find the factors of n. 
    737728      IF( kn == 1 )   GOTO 20 
     
    741732      ! l points to the allowed factor list. 
    742733      ! ifac holds the current factor. 
    743  
     734      ! 
    744735      inu   = kn 
    745736      knfax = 0 
    746  
     737      ! 
    747738      DO jl = ntest, 1, -1 
    748739         ! 
     
    768759         ! 
    769760      END DO 
    770  
     761      ! 
    771762   20 CONTINUE      ! Label 20 is the exit point from the factor search loop. 
    772763      ! 
     
    776767 
    777768   SUBROUTINE nemo_northcomms 
    778       !!====================================================================== 
     769      !!---------------------------------------------------------------------- 
    779770      !!                     ***  ROUTINE  nemo_northcomms  *** 
    780       !! nemo_northcomms    :  Setup for north fold exchanges with explicit  
    781       !!                       point-to-point messaging 
    782       !!===================================================================== 
    783       !!---------------------------------------------------------------------- 
    784       !! 
    785       !! ** Purpose :   Initialization of the northern neighbours lists. 
     771      !! ** Purpose :   Setup for north fold exchanges with explicit  
     772      !!                point-to-point messaging 
     773      !! 
     774      !! ** Method :   Initialization of the northern neighbours lists. 
    786775      !!---------------------------------------------------------------------- 
    787776      !!    1.0  ! 2011-10  (A. C. Coward, NOCS & J. Donners, PRACE) 
    788777      !!    2.0  ! 2013-06 Setup avoiding MPI communication (I. Epicoco, S. Mocavero, CMCC)  
    789778      !!---------------------------------------------------------------------- 
    790  
    791779      INTEGER  ::   sxM, dxM, sxT, dxT, jn 
    792780      INTEGER  ::   njmppmax 
    793  
     781      !!---------------------------------------------------------------------- 
     782      ! 
    794783      njmppmax = MAXVAL( njmppt ) 
    795      
     784      ! 
    796785      !initializes the north-fold communication variables 
    797786      isendto(:) = 0 
    798       nsndto = 0 
    799  
     787      nsndto     = 0 
     788      ! 
    800789      !if I am a process in the north 
    801790      IF ( njmpp == njmppmax ) THEN 
     
    844833      l_north_nogather = .TRUE. 
    845834   END SUBROUTINE nemo_northcomms 
     835 
    846836#else 
    847837   SUBROUTINE nemo_northcomms      ! Dummy routine 
     
    853843END MODULE nemogcm 
    854844 
    855  
Note: See TracChangeset for help on using the changeset viewer.