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 5403 for branches/2015/dev_r5218_CNRS17_coupling/NEMOGCM/NEMO/OPA_SRC/oce.F90 – NEMO

Ignore:
Timestamp:
2015-06-10T22:06:39+02:00 (9 years ago)
Author:
smasson
Message:

dev_r5218_CNRS17_coupling: sette ok

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5218_CNRS17_coupling/NEMOGCM/NEMO/OPA_SRC/oce.F90

    r5352 r5403  
    6969   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)   ::   snwice_fmass       !: time evolution of mass of snow+ice               [Kg/m2/s] 
    7070 
     71   !! Energy budget of the leads (open water embedded in sea ice) 
     72   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)   ::   fraqsr_1lev        !: fraction of solar net radiation absorbed in the first ocean level [-] 
     73 
    7174   !!---------------------------------------------------------------------- 
    7275   !! NEMO/OPA 4.0 , NEMO Consortium (2011) 
     
    8083      !!                   ***  FUNCTION oce_alloc  *** 
    8184      !!---------------------------------------------------------------------- 
    82       INTEGER :: ierr(3) 
     85      INTEGER :: ierr(4) 
    8386      !!---------------------------------------------------------------------- 
    8487      ! 
     
    114117      ALLOCATE( snwice_mass(jpi,jpj) , snwice_mass_b(jpi,jpj), snwice_fmass(jpi,jpj) , STAT=ierr(3) ) 
    115118         ! 
     119      ALLOCATE( fraqsr_1lev(jpi,jpj) , STAT=ierr(4) ) 
     120         ! 
    116121      oce_alloc = MAXVAL( ierr ) 
    117122      IF( oce_alloc /= 0 )   CALL ctl_warn('oce_alloc: failed to allocate arrays') 
Note: See TracChangeset for help on using the changeset viewer.