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 8563 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90 – NEMO

Ignore:
Timestamp:
2017-09-26T15:24:17+02:00 (7 years ago)
Author:
clem
Message:

change variable names (ht_s => h_s & ht_i => h_i)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90

    r8306 r8563  
    356356          CASE('none') 
    357357             IF(lwp) WRITE(numout,*) '      no open boundary condition'         
    358              dta_bdy(ib_bdy)%ll_a_i  = .false. 
    359              dta_bdy(ib_bdy)%ll_ht_i = .false. 
    360              dta_bdy(ib_bdy)%ll_ht_s = .false. 
     358             dta_bdy(ib_bdy)%ll_a_i = .false. 
     359             dta_bdy(ib_bdy)%ll_h_i = .false. 
     360             dta_bdy(ib_bdy)%ll_h_s = .false. 
    361361          CASE('frs') 
    362362             IF(lwp) WRITE(numout,*) '      Flow Relaxation Scheme' 
    363              dta_bdy(ib_bdy)%ll_a_i  = .true. 
    364              dta_bdy(ib_bdy)%ll_ht_i = .true. 
    365              dta_bdy(ib_bdy)%ll_ht_s = .true. 
     363             dta_bdy(ib_bdy)%ll_a_i = .true. 
     364             dta_bdy(ib_bdy)%ll_h_i = .true. 
     365             dta_bdy(ib_bdy)%ll_h_s = .true. 
    366366          CASE DEFAULT   ;   CALL ctl_stop( 'unrecognised value for cn_ice_lim' ) 
    367367        END SELECT 
Note: See TracChangeset for help on using the changeset viewer.