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 299 for trunk/NEMO/LIM_SRC – NEMO

Changeset 299 for trunk/NEMO/LIM_SRC


Ignore:
Timestamp:
2005-09-22T13:00:40+02:00 (19 years ago)
Author:
opalod
Message:

nemo_v1_update_012 : CT : Add a comment to detail why the frld(:,:) array must be equal to 1 over T- land points

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC/limistate.F90

    r247 r299  
    152152      CALL lbc_lnk( hicif, 'T', 1. ) 
    153153      CALL lbc_lnk( frld , 'T', 1. ) 
    154 !i bug frld = 1 over land 
    155       frld(:,:) = tms(:,:) * frld(:,:) + ( 1. - tms(:,:) )   ! put 1 over land 
    156 !i 
     154 
     155      ! C A U T I O N  frld = 1 over land and lbc_lnk put zero along  
     156      ! *************  closed boundaries herefore we force to one over land 
     157      frld(:,:) = tms(:,:) * frld(:,:) + ( 1. - tms(:,:) )    
     158 
    157159      CALL lbc_lnk( hsnif, 'T', 1. ) 
    158160      CALL lbc_lnk( sist , 'T', 1. ) 
Note: See TracChangeset for help on using the changeset viewer.