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 298 for trunk/NEMO/OPA_SRC/SBC/bulk.F90 – NEMO

Ignore:
Timestamp:
2005-09-22T12:58:15+02:00 (19 years ago)
Author:
opalod
Message:

nemo_v1_update_011 : CT : remove the gsss(:,:) and zsss(:,:) arrays since they are not used

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/bulk.F90

    r258 r298  
    4949 
    5050      !! * Local declarations     
    51       REAL(wp), DIMENSION(jpi,jpj) ::   & 
    52          zsst , zsss 
     51      REAL(wp), DIMENSION(jpi,jpj) ::   zsst  
    5352# if ! defined key_ice_lim 
    5453      INTEGER  ::   ji, jj         ! dummy loop indices   
     
    6766        IF ( .NOT.ln_rstart ) THEN 
    6867           gsst(:,:) =  ( nfbulk - 1 ) * ( tn(:,:,1) + rt0 ) 
    69            gsss(:,:) =  ( nfbulk - 1 ) *   sn(:,:,1) 
    7068        ENDIF 
    7169     ENDIF 
     
    8482 
    8583      gsst(:,:) = gsst(:,:) + tn(:,:,1) + rt0   
    86       gsss(:,:) = gsss(:,:) + sn(:,:,1) 
    8784 
    8885      !  Computation of the fluxes        
    8986      IF( MOD( kt - 1 , nfbulk ) == 0 ) THEN 
    9087 
    91 !i       zsst(:,:) = gsst(:,:) / REAL( nfbulk )  
    9288         zsst(:,:) = gsst(:,:) / REAL( nfbulk ) * tmask(:,:,1) 
    93          zsss(:,:) = gsss(:,:) / REAL( nfbulk ) 
    9489         CALL flx_blk( zsst )     
    9590      
    9691         gsst(:,:) = 0.     
    97          gsss(:,:) = 0.   
    9892 
    9993# if ! defined key_ice_lim 
     
    110104            CALL prt_ctl(tab2d_1=tauy    , clinfo1=' v-stress  : ', mask1=tmask, ovlap=1) 
    111105            CALL prt_ctl(tab2d_1=zsst    , clinfo1=' sst       : ', mask1=tmask, ovlap=1) 
    112             CALL prt_ctl(tab2d_1=zsss    , clinfo1=' sss       : ', mask1=tmask, ovlap=1) 
    113106         ENDIF 
    114107# endif    
Note: See TracChangeset for help on using the changeset viewer.