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 15023 for NEMO/trunk/cfgs/C1D_PAPA – NEMO

Ignore:
Timestamp:
2021-06-18T16:35:25+02:00 (3 years ago)
Author:
gsamson
Message:

merge ticket2680_C1D_PAPA branch back into the trunk; see ticket #2680 for details

Location:
NEMO/trunk/cfgs/C1D_PAPA
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/cfgs/C1D_PAPA/EXPREF/namelist_cfg

    r14843 r15023  
    2626!!   namtsd       data: temperature & salinity                          (default: OFF) 
    2727!!   namcrs       coarsened grid (for outputs and/or TOP)               (ln_crs =T) 
    28 !!   namc1d       1D configuration options                              ("key_c1d") 
    29 !!   namc1d_dyndmp 1D newtonian damping applied on currents             ("key_c1d") 
    30 !!   namc1d_uvd   1D data (currents)                                    ("key_c1d") 
     28!!   namc1d       1D configuration options                              (ln_c1d =T) 
     29!!   namc1d_dyndmp 1D newtonian damping applied on currents             (ln_c1d =T) 
     30!!   namc1d_uvd   1D data (currents)                                    (ln_c1d =T) 
    3131!!====================================================================== 
    3232! 
     
    5151   ln_linssh   = .true.   !  =T  linear free surface  ==>>  model level are fixed in time 
    5252   ! 
    53    rn_Dt      =  360.     !  time step for the dynamics and tracer 
     53   rn_Dt       =  360.     !  time step for the dynamics and tracer 
     54   ! 
     55   ln_c1d      = .true.    !  Single column domain (1x1pt)              (T => fill namc1d) 
    5456/ 
    5557!----------------------------------------------------------------------- 
     
    8385/ 
    8486!----------------------------------------------------------------------- 
    85 &namc1d        !   1D configuration options                             ("key_c1d" default: PAPA station) 
    86 !----------------------------------------------------------------------- 
    87    rn_lat1d    =      50   !  Column latitude 
    88    rn_lon1d    =    -145   !  Column longitude 
    89    ln_c1d_locpt =  .true.   ! Localization of 1D config in a grid (T) or independant point (F) 
    90 / 
    91 !----------------------------------------------------------------------- 
    92 &namc1d_dyndmp !   U & V newtonian damping                              ("key_c1d" default: OFF) 
     87&namc1d        !   1D configuration options                             (ln_c1d =T default: PAPA station) 
     88!----------------------------------------------------------------------- 
     89   rn_lat1d    =    50.    !  Column latitude 
     90   rn_lon1d    =  -145.    !  Column longitude 
     91/ 
     92!----------------------------------------------------------------------- 
     93&namc1d_dyndmp !   U & V newtonian damping                              (ln_c1d =T default: OFF) 
    9394!----------------------------------------------------------------------- 
    9495   ln_dyndmp   =  .false.  !  add a damping term (T) or not (F) 
    9596/ 
    9697!----------------------------------------------------------------------- 
    97 &namc1d_uvd    !   data: U & V currents                                 ("key_c1d" default: OFF) 
     98&namc1d_uvd    !   data: U & V currents                                 (ln_c1d =T default: OFF) 
    9899!----------------------------------------------------------------------- 
    99100   !                       !  =T read U-V fields for: 
  • NEMO/trunk/cfgs/C1D_PAPA/MY_SRC/usrdef_nam.F90

    r14433 r15023  
    7171      kk_cfg = 0 
    7272 
    73       ! Global Domain size:  C1D domain is 3 x 3 grid-points x 75 or vertical levels 
    74       kpi = 3 
    75       kpj = 3 
    76       kpk = 75  
     73      ! Global Domain size:  C1D domain is 1 x 1 grid-points x 75 or vertical levels 
     74      kpi = 1 
     75      kpj = 1 
     76      kpk = 75 
    7777      !                             ! Set the lateral boundary condition of the global domain 
    78       ldIperio =  .TRUE.   ;   ldJperio = .TRUE.   ! C1D configuration : 3x3 basin with cyclic Est-West and Norht-South condition 
     78      ldIperio =  .TRUE.   ;   ldJperio = .TRUE.   ! C1D configuration : 1x1 basin with cyclic Est-West and Norht-South condition 
    7979      ldNFold  = .FALSE.   ;   cdNFtype = '-' 
    8080      ! 
     
    8989         WRITE(numout,*) '         z-partial-step coordinate flag        ln_zps = ', ln_zps 
    9090         WRITE(numout,*) '         s-coordinate flag                     ln_sco = ', ln_sco 
    91          WRITE(numout,*) '      C1D domain = 3 x 3 x75 grid-points                ' 
     91         WRITE(numout,*) '      C1D domain = 1 x 1 x 75 grid-points                ' 
    9292         WRITE(numout,*) '         resulting global domain size :        jpiglo = ', kpi 
    9393         WRITE(numout,*) '                                               jpjglo = ', kpj 
  • NEMO/trunk/cfgs/C1D_PAPA/cpp_C1D_PAPA.fcm

    r14239 r15023  
    1  bld::tool::fppkeys   key_c1d key_xios key_linssh 
     1 bld::tool::fppkeys   key_xios key_linssh 
Note: See TracChangeset for help on using the changeset viewer.