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 8313 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/OBS/diaobs.F90 – NEMO

Ignore:
Timestamp:
2017-07-10T20:24:21+02:00 (7 years ago)
Author:
clem
Message:

STEP2 (2): remove obsolete features

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/OPA_SRC/OBS/diaobs.F90

    r8306 r8313  
    539539#if defined  key_lim3 
    540540      USE ice, ONLY : &            ! LIM3 Ice model variables 
    541          & frld 
     541         & at_i 
    542542#endif 
    543543      IMPLICIT NONE 
     
    564564         & zgphi2                  ! Model latitudes for prof variable 2 
    565565#if ! defined key_lim3 
    566       REAL(wp), POINTER, DIMENSION(:,:) :: frld 
     566      REAL(wp), POINTER, DIMENSION(:,:) :: at_i 
    567567#endif 
    568568      LOGICAL :: llnightav        ! Logical for calculating night-time average 
     
    579579      CALL wrk_alloc( jpi, jpj, zgphi2 ) 
    580580#if ! defined key_lim3 
    581       CALL wrk_alloc(jpi,jpj,frld)  
     581      CALL wrk_alloc(jpi,jpj,at_i)  
    582582#endif 
    583583 
     
    591591 
    592592      !----------------------------------------------------------------------- 
    593       ! No LIM => frld == 0.0_wp 
     593      ! No LIM => at_i == 0.0_wp 
    594594      !----------------------------------------------------------------------- 
    595595#if ! defined key_lim3 
    596       frld(:,:) = 0.0_wp 
     596      at_i(:,:) = 0.0_wp 
    597597#endif 
    598598      !----------------------------------------------------------------------- 
     
    674674                  CYCLE 
    675675               ELSE 
    676                   zsurfvar(:,:) = 1._wp - frld(:,:) 
     676                  zsurfvar(:,:) = at_i(:,:) 
    677677               ENDIF 
    678678 
     
    699699      CALL wrk_dealloc( jpi, jpj, zgphi2 ) 
    700700#if ! defined key_lim3 
    701       CALL wrk_dealloc(jpi,jpj,frld) 
     701      CALL wrk_dealloc(jpi,jpj,at_i) 
    702702#endif 
    703703 
Note: See TracChangeset for help on using the changeset viewer.