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 674 for trunk/NEMO – NEMO

Changeset 674 for trunk/NEMO


Ignore:
Timestamp:
2007-06-01T19:38:09+02:00 (17 years ago)
Author:
ctlod
Message:

nemo_v2_bugfix_045 : CT : move daily interpolation out of the reading section loop of monthly fields

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC/limdmp.F90

    r508 r674  
    154154            CALL prihre( frld_data(1,1,1), jpi, jpj, 1, jpi, 20, 1, jpj, 20, 1., numout ) 
    155155         ENDIF 
    156           
    157          ! 2. At every time step compute ice thickness and fraction lead data 
    158          ! ------------------------------------------------------------------ 
    159          zxy = FLOAT( nday + 15 - 30 * i15 ) / 30. 
    160          hicif_dta(:,:) = (1.-zxy) * hicif_data(:,:,1) + zxy * hicif_data(:,:,2) 
    161          frld_dta(:,:) = (1.-zxy) * frld_data(:,:,1) + zxy * frld_data(:,:,2) 
     156 
     157         CALL FLUSH(numout) 
    162158 
    163159      ENDIF 
    164        
     160         
     161      ! 3. At every time step compute ice thickness and fraction lead data 
     162      ! ------------------------------------------------------------------ 
     163      zxy = FLOAT( nday + 15 - 30 * i15 ) / 30. 
     164      hicif_dta(:,:) = (1.-zxy) * hicif_data(:,:,1) + zxy * hicif_data(:,:,2) 
     165      frld_dta (:,:) = (1.-zxy) * frld_data (:,:,1) + zxy * frld_data (:,:,2) 
     166 
    165167      IF( kt == nitend )   CALL iom_close( inumice_dmp ) 
    166168      ! 
Note: See TracChangeset for help on using the changeset viewer.