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 9694 for utils/tools/NESTING/src/agrif_types.f90 – NEMO

Ignore:
Timestamp:
2018-05-30T17:44:50+02:00 (6 years ago)
Author:
clem
Message:

change the nesting tools to choose the number of points copied from mother to child grids in the namelist (npt_copy) and change the name of nb_connection_pts to npt_connect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • utils/tools/NESTING/src/agrif_types.f90

    r9628 r9694  
    5050  INTEGER N,type_bathy_interp 
    5151  !  
    52   INTEGER jpizoom,jpjzoom,nb_connection_pts 
     52  INTEGER jpizoom,jpjzoom,npt_connect,npt_copy 
    5353  !       
    5454  REAL*8 rn_hmin 
     
    7373  !       
    7474  NAMELIST /bathymetry/new_topo,elevation_database,elevation_name,smoothing,smoothing_factor, & 
    75        nb_connection_pts,removeclosedseas,type_bathy_interp,rn_hmin       
     75       npt_connect,npt_copy,removeclosedseas,type_bathy_interp,rn_hmin       
    7676  !       
    7777  NAMELIST /nesting/imin,imax,jmin,jmax,rho,rhot,bathy_update,updated_parent_file       
     
    9090 
    9191  NAMELIST /restart_trc/ restart_trc_file,interp_type  
    92  
    93   INTEGER :: connectionsize = 2  
    9492  ! 
    9593CONTAINS 
     
    154152            FORM   = 'FORMATTED'      , & 
    155153            ACTION = 'READ'           , & 
    156             ACCESS = 'SEQUENTIAL'     )      
     154            ACCESS = 'SEQUENTIAL'     ) 
    157155       ! 
    158156       REWIND(unit_nml) 
    159157       READ (unit_nml , NML = input_output) 
    160158       READ (unit_nml , NML = coarse_grid_files) 
    161        READ (unit_nml , NML = bathymetry)    
     159       READ (unit_nml , NML = bathymetry) 
    162160       READ (unit_nml , NML = nesting)  
    163161       READ (unit_nml , NML = vertical_grid) 
Note: See TracChangeset for help on using the changeset viewer.