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 3865 for branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC/SBC/sbc_oce.F90 – NEMO

Ignore:
Timestamp:
2013-04-09T18:34:38+02:00 (11 years ago)
Author:
acc
Message:

Branch 2013/dev_r3858_NOC_ZTC, #863. Nearly complete port of 2011/dev_r2739_LOCEAN8_ZTC development branch into v3.5aplha base. Compiles and runs but currently unstable after 8 timesteps with ORCA2_LIM reference configuration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC/SBC/sbc_oce.F90

    r3680 r3865  
    9191   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   sss_m     !: mean (nn_fsbc time-step) surface sea salinity            [psu] 
    9292   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   ssh_m     !: mean (nn_fsbc time-step) sea surface height                [m] 
     93   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   e3t_m     !: mean (nn_fsbc time-step) sea surface height                [m] 
    9394 
    9495   !! * Substitutions 
     
    105106      !!                  ***  FUNCTION sbc_oce_alloc  *** 
    106107      !!--------------------------------------------------------------------- 
    107       INTEGER :: ierr(4) 
     108      INTEGER :: ierr(5) 
    108109      !!--------------------------------------------------------------------- 
    109110      ierr(:) = 0 
     
    126127         &      ssu_m  (jpi,jpj) , sst_m(jpi,jpj) ,                       & 
    127128         &      ssv_m  (jpi,jpj) , sss_m  (jpi,jpj), ssh_m(jpi,jpj) , STAT=ierr(4) ) 
     129         ! 
     130#if defined key_vvl 
     131      ALLOCATE( e3t_m(jpi,jpj) , STAT=ierr(5) ) 
     132#endif 
    128133         ! 
    129134      sbc_oce_alloc = MAXVAL( ierr ) 
Note: See TracChangeset for help on using the changeset viewer.