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_cice.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_cice.F90

    r3294 r3402  
    107107      !! ** Action  : - time evolution of the CICE sea-ice model 
    108108      !!              - update all sbc variables below sea-ice: 
    109       !!                utau, vtau, qns , qsr, emp , emps 
     109      !!                utau, vtau, qns , qsr, emp , sfx  
    110110      !!--------------------------------------------------------------------- 
    111111      INTEGER, INTENT(in) ::   kt      ! ocean time step 
     
    480480! salinity calculation 
    481481      CALL cice2nemo(fresh_gbm,ztmp,'T', 1. ) 
    482       emps(:,:)=emp(:,:)-ztmp(:,:) 
     482      sfx (:,:)=emp(:,:)-ztmp(:,:) 
    483483! Note the 1000.0 is to convert from kg salt to g salt (needed for PSU) 
    484484      CALL cice2nemo(fsalt_gbm,ztmp,'T', 1. ) 
     
    486486         DO ji=1,jpi 
    487487            IF (sss_m(ji,jj).gt.0.0) THEN 
    488                emps(ji,jj)=emps(ji,jj)+ztmp(ji,jj)*1000.0/sss_m(ji,jj) 
     488               sfx (ji,jj)=sfx (ji,jj)+ztmp(ji,jj)*1000.0/sss_m(ji,jj) 
    489489            ENDIF 
    490490         ENDDO 
     
    494494! weight of the precip will affect the free surface even if it falls on the ice 
    495495! (same to the argument that freezing / melting of ice doesn't change the free surface)  
    496 ! Sublimation from the ice is treated in a similar way (included in emp but not emps 
     496! Sublimation from the ice is treated in a similar way (included in emp but not sfx  
    497497! 
    498498! This should not be done in the variable volume case 
     
    512512 
    513513      CALL lbc_lnk( emp , 'T', 1. ) 
    514       CALL lbc_lnk( emps , 'T', 1. ) 
     514      CALL lbc_lnk( sfx , 'T', 1. ) 
    515515 
    516516! Solar penetrative radiation and non solar surface heat flux 
Note: See TracChangeset for help on using the changeset viewer.