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 7025 for branches/2016/dev_r6999_CONFIGMAN_1/NEMOGCM/TOOLS/SIREN/src/create_restart.f90 – NEMO

Ignore:
Timestamp:
2016-10-13T11:08:38+02:00 (8 years ago)
Author:
jpaul
Message:

see ticket #1781

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_r6999_CONFIGMAN_1/NEMOGCM/TOOLS/SIREN/src/create_restart.f90

    r6393 r7025  
    6262!> 
    6363!>    * _vertical grid namelist (namzgr)_:<br/> 
    64 !>       - dn_pp_to_be_computed  : 
    65 !>       - dn_ppsur              : 
    66 !>       - dn_ppa0               : 
    67 !>       - dn_ppa1               : 
    68 !>       - dn_ppa2               :  
    69 !>       - dn_ppkth              : 
    70 !>       - dn_ppkth2             : 
    71 !>       - dn_ppacr              : 
    72 !>       - dn_ppacr2             : 
    73 !>       - dn_ppdzmin            : 
    74 !>       - dn_pphmax             : 
     64!>       - dn_ppsur              : coefficient to compute vertical grid 
     65!>       - dn_ppa0               : coefficient to compute vertical grid 
     66!>       - dn_ppa1               : coefficient to compute vertical grid 
     67!>       - dn_ppa2               : double tanh function parameter 
     68!>       - dn_ppkth              : coefficient to compute vertical grid 
     69!>       - dn_ppkth2             : double tanh function parameter 
     70!>       - dn_ppacr              : coefficient to compute vertical grid 
     71!>       - dn_ppacr2             : double tanh function parameter 
     72!>       - dn_ppdzmin            : minimum vertical spacing 
     73!>       - dn_pphmax             : maximum depth 
    7574!>       - in_nlevel             : number of vertical level 
    7675!> 
     76!>     @note If ppa1 and ppa0 and ppsur are undefined 
     77!>           NEMO will compute them from ppdzmin , pphmax, ppkth, ppacr 
     78!> 
    7779!>    * _partial step namelist (namzps)_:<br/> 
    78 !>       - dn_e3zps_min          : 
    79 !>       - dn_e3zps_rat          :  
     80!>       - dn_e3zps_min          : minimum thickness of partial step level (meters) 
     81!>       - dn_e3zps_rat          : minimum thickness ratio of partial step level 
    8082!> 
    8183!>    * _variable namelist (namvar)_:<br/> 
     
    158160!> @date September, 2015 
    159161!> - manage useless (dummy) variable, attributes, and dimension 
     162!> 
     163!> @todo 
     164!> - rewrite using meshmask instead of bathymetry and coordinates files 
    160165!> 
    161166!> @note Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt) 
     
    262267 
    263268   !namzgr 
    264    REAL(dp)                                :: dn_pp_to_be_computed = 0._dp 
    265269   REAL(dp)                                :: dn_ppsur   = -3958.951371276829_dp 
    266270   REAL(dp)                                :: dn_ppa0    =   103.953009600000_dp 
     
    316320  
    317321   NAMELIST /namzgr/ & 
    318    &  dn_pp_to_be_computed, & 
    319322   &  dn_ppsur,     & 
    320323   &  dn_ppa0,      & 
     
    402405      ! match variable with file 
    403406      tl_multi=multi_init(cn_varfile) 
    404        
     407  
    405408      READ( il_fileid, NML = namnst ) 
    406409      READ( il_fileid, NML = namout ) 
     
    592595               !- check grid coincidence 
    593596               IF( ll_sameGrid )THEN 
     597                  il_rho(:)=1 
    594598                  CALL grid_check_coincidence( tl_mpp, tl_coord1, & 
    595599                  &                            il_imin1, il_imax1, & 
Note: See TracChangeset for help on using the changeset viewer.