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 1108 for trunk/CONFIG/ORCA2_LIM/EXP00/1_namelist – NEMO

Ignore:
Timestamp:
2008-06-12T15:26:23+02:00 (16 years ago)
Author:
ctlod
Message:

trunk: include nambdy & namtide namelist, see ticket: #126

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CONFIG/ORCA2_LIM/EXP00/1_namelist

    r1087 r1108  
    44!!              3 - Surface boundary (namsbc, namsbc_ana, namsbc_flx, namsbc_clio, namsbc_core 
    55!!                                    namsbc_cpl, namqsr, namsbc_rnf, namsbc_ssr, namalb) 
    6 !!              4 - lateral boundary (namlbc, namcla, namobc) 
     6!!              4 - lateral boundary (namlbc, namcla, namobc, nambdy, namtide) 
    77!!              5 - bottom  boundary (nambfr, nambbc, nambbl) 
    88!!              6 - Tracer           (nameos, nam_traadv, nam_traldf, namtdp) 
     
    379379!!   namcla        cross land advection 
    380380!!   namobc        open boundaries parameters                           ("key_obc") 
     381!!   nambdy        Unstructured open boundaries                         ("key_bdy") 
     382!!   namtide       Tidal forcing at open boundaries                     ("key_bdy_tides") 
    381383!!====================================================================== 
    382384 
     
    425427    ln_obc_clim = .true. 
    426428    ln_vol_cst  = .false. 
     429/ 
     430!----------------------------------------------------------------------- 
     431!       nambdy    unstructured open boundaries parameters               ("key_bdy") 
     432!----------------------------------------------------------------------- 
     433!  filbdy_mask     Name of mask file (at T-points) 
     434!  filbdy_data_T   Name of data file (at T-points) 
     435!  filbdy_data_U   Name of data file (at U-points) 
     436!  filbdy_data_V   Name of data file (at V-points) 
     437!  ln_bdy_clim     bdy files must contain 1 or 12 time dumps and be cyclic.  
     438!  ln_bdy_vol      Total volume correction (see volbdy parameter) 
     439!  ln_bdy_fla      Flather boundary conditions                          
     440!  nbdy_dta        0 the bdy data are equal to the initial state 
     441!                  1 the bdy data are read in 'bdydata   .nc' files 
     442!  nb_rimwidth     width of the relaxation zone 
     443!  volbdy          0 the total water flux across open boundaries is zero  
     444!                  1 the total volume of the system is conserved 
     445&nambdy 
     446    filbdy_mask   = 'bdymask_grid_T.nc' 
     447    filbdy_data_T = 'bdydata_grid_T.nc' 
     448    filbdy_data_U = 'bdydata_grid_U.nc' 
     449    filbdy_data_V = 'bdydata_grid_V.nc' 
     450    ln_bdy_clim = .false. 
     451    ln_bdy_vol  = .false. 
     452    ln_bdy_fla  = .true. 
     453    nbdy_dta    = 1 
     454    nb_rimwidth = 1 
     455    volbdy      = 1 
     456/ 
     457!----------------------------------------------------------------------- 
     458!       namtide   tidal forcing at unstructured boundaries              ("key_bdy_tides") 
     459!----------------------------------------------------------------------- 
     460!  filtide         File name root of tidal forcing files 
     461!  tide_cpt        Names of tidal components used 
     462!  tide_speed      Phase speeds of tidal components (deg/hour) 
     463!  ln_tide_date    If true, adjust tidal harmonics for start date of run. 
     464&namtide 
     465    filtide      = 'bdytide_' 
     466    tide_cpt     = 'M2','S1' 
     467    tide_speed   = 28.984106, 15.000001 
     468    ln_tide_date = .true. 
    427469/ 
    428470 
Note: See TracChangeset for help on using the changeset viewer.