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

    r3396 r3402  
    118118      !!              - qsr         solar heat flux 
    119119      !!              - emp         upward mass flux (evap. - precip) 
     120      !!              - sfx         salt flux; set to zero at nit000 but possibly non-zero 
     121      !!                            if ice is present (computed in limsbc(_2).F90) 
    120122      !!---------------------------------------------------------------------- 
    121123      INTEGER, INTENT( in  ) ::   kt   ! ocean time step 
     
    172174         ALLOCATE( sbudyko(jpi,jpj) , stauc(jpi,jpj), STAT=ierr3 ) 
    173175         IF( ierr3 > 0 )   CALL ctl_stop( 'STOP', 'sbc_blk_clio: unable to allocate arrays' ) 
     176         ! 
     177         sfx(:,:) = 0.0_wp                      ! salt flux; zero unless ice is present (computed in limsbc(_2).F90) 
    174178         ! 
    175179      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.