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/sbcana.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/sbcana.F90

    r3396 r3402  
    9090         ! 
    9191         emp (:,:) = rn_emp0 
     92         sfx (:,:) = 0.0_wp 
    9293         qns (:,:) = rn_qns0 - emp(:,:) * sst_m(:,:) * rcp      ! including heat content associated with mass flux at SST 
    9394         qsr (:,:) = rn_qsr0 
     
    129130      !! 
    130131      !! ** Action  : - set the ocean surface boundary condition, i.e.    
    131       !!                   utau, vtau, taum, wndm, qns, qsr, emp 
     132      !!                   utau, vtau, taum, wndm, qns, qsr, emp, sfx 
    132133      !! 
    133134      !! Reference : Hazeleger, W., and S. Drijfhout, JPO, 30, 677-695, 2000. 
     
    224225      ! freshwater (mass flux) and update of qns with heat content of emp 
    225226      emp (:,:) = emp(:,:) - zsumemp * tmask(:,:,1)        ! freshwater flux (=0 in domain average) 
     227      sfx (:,:) = 0.0_wp                                   ! no salt flux 
    226228      qns (:,:) = qns(:,:) - emp(:,:) * sst_m(:,:) * rcp   ! evap and precip are at SST 
    227229 
Note: See TracChangeset for help on using the changeset viewer.