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 14511 for NEMO/branches/2021/dev_r14393_HPC-03_Mele_Comm_Cleanup/cfgs – NEMO

Ignore:
Timestamp:
2021-02-19T17:06:46+01:00 (3 years ago)
Author:
francesca
Message:

align branch with trunk@14509

Location:
NEMO/branches/2021/dev_r14393_HPC-03_Mele_Comm_Cleanup/cfgs
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/dev_r14393_HPC-03_Mele_Comm_Cleanup/cfgs/C1D_PAPA/MY_SRC/usrdef_nam.F90

    r12377 r14511  
    3939CONTAINS 
    4040 
    41    SUBROUTINE usr_def_nam( cd_cfg, kk_cfg, kpi, kpj, kpk, kperio ) 
     41   SUBROUTINE usr_def_nam( cd_cfg, kk_cfg, kpi, kpj, kpk, ldIperio, ldJperio, ldNFold, cdNFtype ) 
    4242      !!---------------------------------------------------------------------- 
    4343      !!                     ***  ROUTINE dom_nam  *** 
     
    5151      !! ** input   : - namusr_def namelist found in namelist_cfg 
    5252      !!---------------------------------------------------------------------- 
    53       CHARACTER(len=*)              , INTENT(out) ::   cd_cfg          ! configuration name 
    54       INTEGER                       , INTENT(out) ::   kk_cfg          ! configuration resolution 
    55       INTEGER                       , INTENT(out) ::   kpi, kpj, kpk   ! global domain sizes  
    56       INTEGER                       , INTENT(out) ::   kperio          ! lateral global domain b.c.  
     53      CHARACTER(len=*), INTENT(out) ::   cd_cfg               ! configuration name 
     54      INTEGER         , INTENT(out) ::   kk_cfg               ! configuration resolution 
     55      INTEGER         , INTENT(out) ::   kpi, kpj, kpk        ! global domain sizes 
     56      LOGICAL         , INTENT(out) ::   ldIperio, ldJperio   ! i- and j- periodicity 
     57      LOGICAL         , INTENT(out) ::   ldNFold              ! North pole folding 
     58      CHARACTER(len=1), INTENT(out) ::   cdNFtype             ! Folding type: T or F 
    5759      ! 
    5860      INTEGER ::   ios   ! Local integer 
     
    7476      kpk = 75  
    7577      !                             ! Set the lateral boundary condition of the global domain 
    76       kperio =  7                   ! C1D configuration : 3x3 basin with cyclic Est-West and Norht-South condition 
     78      ldIperio =  .TRUE.   ;   ldJperio = .TRUE.   ! C1D configuration : 3x3 basin with cyclic Est-West and Norht-South condition 
     79      ldNFold  = .FALSE.   ;   cdNFtype = '-' 
    7780      ! 
    7881      !                             ! control print 
     
    9093         WRITE(numout,*) '                                               jpjglo = ', kpj 
    9194         WRITE(numout,*) '                                               jpkglo = ', kpk 
    92          WRITE(numout,*) '   Lateral boundary condition of the global domain' 
    93          WRITE(numout,*) '      C1D : closed basin                       jperio = ', kperio 
     95         WRITE(numout,*) '   ' 
    9496      ENDIF 
    9597      ! 
  • NEMO/branches/2021/dev_r14393_HPC-03_Mele_Comm_Cleanup/cfgs/README.rst

    r11743 r14511  
    240240   The vertical eddy viscosity and diffusivity coefficients are increased to 1 m\ :sup:`2`/s in 
    241241   case of static instability. 
    242 :time step: is 5760sec (1h36') so that there is 15 time steps in one day. 
     242:time step: is 5400sec (1h30') so that there is 16 time steps in one day. 
    243243 
    244244ORCA2_OFF_PISCES 
  • NEMO/branches/2021/dev_r14393_HPC-03_Mele_Comm_Cleanup/cfgs/SHARED/namelist_ref

    r14255 r14511  
    644644   rn_test_box             = 108.0,  116.0, -66.0, -58.0 
    645645   ln_use_calving          = .false. ! Use calving data even when nn_test_icebergs > 0 
    646    rn_speed_limit          = 0.      ! CFL speed limit for a berg 
     646   rn_speed_limit          = 0.      ! CFL speed limit for a berg (safe value is 0.4, see #2581) 
    647647   ! 
    648648   ln_M2016                = .false. ! use Merino et al. (2016) modification (use of 3d ocean data instead of only sea surface data) 
     
    14981498   jpnj        =   0       !  number of processors following j (set automatically if < 1), see also ln_listonly = T 
    14991499   nn_hls      =   1       !  halo width (applies to both rows and columns) 
     1500   nn_comm     =   1       !  comm choice 
    15001501/ 
    15011502!----------------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.