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 8408 for branches/UKMO/r6232_CO6_CO5_zenv_pomsdwl/NEMOGCM/NEMO/OPA_SRC/trc_oce.F90 – NEMO

Ignore:
Timestamp:
2017-08-07T16:52:13+02:00 (7 years ago)
Author:
jcastill
Message:

Remove the code that does not belong to this branch, and that is already included in the amm15 configuration branch AMM15_v3_6_STABLE_package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/r6232_CO6_CO5_zenv_pomsdwl/NEMOGCM/NEMO/OPA_SRC/trc_oce.F90

    r7454 r8408  
    2727   REAL(wp), PUBLIC, SAVE, ALLOCATABLE, DIMENSION(:,:,:) ::   etot3         !: light absortion coefficient 
    2828   REAL(wp), PUBLIC, SAVE, ALLOCATABLE, DIMENSION(:,:,:) ::   facvol        !: volume for degraded regions 
    29    REAL(wp), PUBLIC, SAVE, ALLOCATABLE, DIMENSION(:,:)   ::   rlambda2      !: Lambda2 for downwell version of Short wave Radiation 
    30    REAL(wp), PUBLIC                                      ::   rlambda       !: Lambda  for downwell version of Short wave Radiation 
    3129 
    3230#if defined key_top  
     
    8078      !!                  ***  trc_oce_alloc  *** 
    8179      !!---------------------------------------------------------------------- 
    82       INTEGER ::   ierr(3)        ! Local variables 
     80      INTEGER ::   ierr(2)        ! Local variables 
    8381      !!---------------------------------------------------------------------- 
    8482      ierr(:) = 0 
    8583                     ALLOCATE( etot3 (jpi,jpj,jpk), STAT=ierr(1) ) 
    8684      IF( lk_degrad) ALLOCATE( facvol(jpi,jpj,jpk), STAT=ierr(2) ) 
    87                     ALLOCATE( rlambda2(jpi,jpj),   STAT=ierr(3) ) 
    8885      trc_oce_alloc  = MAXVAL( ierr ) 
    8986      ! 
    9087      IF( trc_oce_alloc /= 0 )   CALL ctl_warn('trc_oce_alloc: failed to allocate etot3 array') 
    91       IF( trc_oce_alloc /= 0 )   CALL ctl_warn('trc_oce_alloc: failed to allocate etot3, facvol or rlambda2 array') 
    9288   END FUNCTION trc_oce_alloc 
    9389 
Note: See TracChangeset for help on using the changeset viewer.