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 3402 for branches/2012/dev_r3385_NOCS04_HAMF/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_lim.F90 – NEMO

Ignore:
Timestamp:
2012-05-25T18:43:49+02:00 (12 years ago)
Author:
acc
Message:

Branch: dev_r3385_NOCS04_HAMF; #665. Stage 2 of 2012 development: suppression of emps array and introduction of sfx (salt flux) array with associated code to setup the options for embedding the seaice into the ocean

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_r3385_NOCS04_HAMF/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_lim.F90

    r3294 r3402  
    8888      !! ** Action  : - time evolution of the LIM sea-ice model 
    8989      !!              - update all sbc variables below sea-ice: 
    90       !!                utau, vtau, taum, wndm, qns , qsr, emp , emps 
     90      !!                utau, vtau, taum, wndm, qns , qsr, emp , sfx  
    9191      !!--------------------------------------------------------------------- 
    9292      INTEGER, INTENT(in) ::   kt      ! ocean time step 
     
    392392      DO jj = 1, jpj 
    393393         DO ji = 1, jpi 
    394             IF( ABS( emps(ji,jj) ) .GT. 1.0e-2 ) THEN 
     394            IF( ABS( sfx (ji,jj) ) .GT. 1.0e-2 ) THEN 
    395395               CALL lim_prt_state( ji, jj, 3, ' ALERTE 5 :   High salt flux ' ) 
    396396               DO jl = 1, jpl 
     
    644644        WRITE(numout,*) 
    645645        WRITE(numout,*) ' - Salt fluxes at bottom interface ***' 
    646         WRITE(numout,*) ' emps       : ', emps(ki,kj) 
     646        WRITE(numout,*) ' sfx        : ', sfx (ki,kj) 
    647647        WRITE(numout,*) ' emp        : ', emp(ki,kj) 
    648648        WRITE(numout,*) ' fsbri      : ', fsbri(ki,kj) 
Note: See TracChangeset for help on using the changeset viewer.