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 6128 – NEMO

Changeset 6128


Ignore:
Timestamp:
2015-12-18T14:33:27+01:00 (8 years ago)
Author:
delrosso
Message:

fix for ticket 1599

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_merge_2015/NEMOGCM/NEMO/OPA_SRC/SBC/fldread.F90

    r6108 r6128  
    12931293      INTEGER ::   jpi1_lsm,jpi2_lsm,jpj1_lsm,jpj2_lsm   ! temporary indices 
    12941294      INTEGER ::   itmpi,itmpj,itmpz                     ! lengths 
    1295       REAL(wp),DIMENSION(:,:,:), ALLOCATABLE ::   ztmp_fly_dta, zfieldo                 ! local array of values on input grid      
     1295      REAL(wp),DIMENSION(:,:,:), ALLOCATABLE ::   ztmp_fly_dta                 ! local array of values on input grid      
    12961296      !!---------------------------------------------------------------------- 
    12971297      ! 
     
    13461346 
    13471347 
    1348          itmpi=SIZE(ztmp_fly_dta(jpi1_lsm:jpi2_lsm,jpj1_lsm:jpj2_lsm,:),1) 
    1349          itmpj=SIZE(ztmp_fly_dta(jpi1_lsm:jpi2_lsm,jpj1_lsm:jpj2_lsm,:),2) 
     1348         itmpi=jpi2_lsm-jpi1_lsm+1 
     1349         itmpj=jpj2_lsm-jpj1_lsm+1 
    13501350         itmpz=kk 
    13511351         ALLOCATE(ztmp_fly_dta(itmpi,itmpj,itmpz)) 
Note: See TracChangeset for help on using the changeset viewer.