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 824 for branches/dev_002_LIM/NEMO/OPA_SRC/SBC/bulk.F90 – NEMO

Ignore:
Timestamp:
2008-03-06T12:37:37+01:00 (16 years ago)
Author:
rblod
Message:

Delete LIM_SRC and add corresponding modifications in Ocean part

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_002_LIM/NEMO/OPA_SRC/SBC/bulk.F90

    r719 r824  
    1616   USE ocfzpt          ! ocean freezing point 
    1717   USE flxblk          ! bulk formulae 
     18   USE flxblk_2        ! bulk formulae 
    1819   USE blk_oce         ! bulk variable  
    1920   USE flx_oce 
     
    5051      !! * Local declarations     
    5152      REAL(wp), DIMENSION(jpi,jpj) ::   zsst  
    52 # if ! defined key_ice_lim 
     53# if ( ! defined key_ice_lim && !defined key_lim2 ) 
    5354      INTEGER  ::   ji, jj         ! dummy loop indices   
    5455      REAL(wp) ::   ztgel, zicopa 
     
    6970     ENDIF 
    7071 
    71 # if ! defined key_ice_lim 
     72# if ( ! defined key_ice_lim && ! defined key_lim2 ) 
    7273      ! opa model ice freeze()       
    7374      DO jj = 1, jpj 
     
    8788 
    8889         zsst(:,:) = gsst(:,:) / REAL( nfbulk ) * tmask(:,:,1) 
    89          CALL flx_blk( zsst )     
     90         IF ( .NOT. lk_lim2 )  CALL flx_blk( zsst )     
     91 
     92#if defined key_lim2 
     93         CALL flx_blk_2( zsst )     
     94#endif 
    9095      
    9196         gsst(:,:) = 0.     
    9297 
    93 # if ! defined key_ice_lim 
     98# if ( ! defined key_ice_lim && ! defined key_lim2 ) 
    9499         IF(ln_ctl) THEN         ! print mean trends (used for debugging) 
    95100            CALL prt_ctl_info(' Forcings ') 
Note: See TracChangeset for help on using the changeset viewer.