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 4205 for branches/2013/dev_LOCEAN_2013/NEMOGCM/NEMO/OPA_SRC/oce.F90 – NEMO

Ignore:
Timestamp:
2013-11-14T18:02:06+01:00 (10 years ago)
Author:
clem
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_LOCEAN_2013/NEMOGCM/NEMO/OPA_SRC/oce.F90

    r4152 r4205  
    5757   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)   ::   snwice_fmass       !: time evolution of mass of snow+ice               [Kg/m2/s] 
    5858 
     59   !! arrays related to penetration of solar fluxes to calculate the heat budget for sea ice 
     60   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)   ::   oatte, iatte       !: attenuation coef of the input solar flux [unitless] 
     61 
    5962   !!---------------------------------------------------------------------- 
    6063   !! NEMO/OPA 4.0 , NEMO Consortium (2011) 
     
    6871      !!                   ***  FUNCTION oce_alloc  *** 
    6972      !!---------------------------------------------------------------------- 
    70       INTEGER :: ierr(3) 
     73      INTEGER :: ierr(4) 
    7174      !!---------------------------------------------------------------------- 
    7275      ! 
     
    9093         &      gru(jpi,jpj)      , grv(jpi,jpj)                      , STAT=ierr(2) ) 
    9194         ! 
    92       ALLOCATE( snwice_mass(jpi,jpj)  , snwice_mass_b(jpi,jpj),             & 
    93          &      snwice_fmass(jpi,jpj), STAT= ierr(3) ) 
     95      ALLOCATE( snwice_mass(jpi,jpj) , snwice_mass_b(jpi,jpj), snwice_fmass(jpi,jpj) , STAT=ierr(3) ) 
     96         ! 
     97      ALLOCATE( iatte(jpi,jpj) , oatte(jpi,jpj) , STAT=ierr(4) ) 
    9498         ! 
    9599      oce_alloc = MAXVAL( ierr ) 
Note: See TracChangeset for help on using the changeset viewer.