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.
agrif_parameters.F90 in utils/tools/DOMAINcfg/src – NEMO

source: utils/tools/DOMAINcfg/src/agrif_parameters.F90 @ 15814

Last change on this file since 15814 was 15331, checked in by jchanut, 3 years ago

#2638, add closed seas filling algorithm (inside AGRIF zooms only)

File size: 704 bytes
Line 
1MODULE agrif_parameters
2   
3   USE par_kind
4
5   PUBLIC 
6
7#if defined key_agrif
8        LOGICAL :: ln_remove_closedseas=.FALSE.
9        LOGICAL :: ln_vert_remap=.FALSE. ! =T is using volume conserving update
10   INTEGER :: npt_copy      ! area (in coarse grid points) with piecewise
11                                 ! constant bathymetry inside child zoom: should equal the sponge length
12   INTEGER :: npt_connect   ! area (in coarse grid points) of coarse/child
13                                 ! bathymetry blending
14   REAL(wp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   ztabramp
15   LOGICAL,  PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   e3t_interp_done
16
17#endif
18
19END MODULE agrif_parameters
Note: See TracBrowser for help on using the repository browser.