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 3124 for branches/2011/dev_NEMO_MERGE_2011/NEMOGCM/NEMO/TOP_SRC/PISCES/p4zsed.F90 – NEMO

Ignore:
Timestamp:
2011-11-16T10:25:18+01:00 (12 years ago)
Author:
cetlod
Message:

dev_NEMO_MERGE_2011/NEMOGCM:minor modifications on the use of nittrc000 + style corrections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/dev_NEMO_MERGE_2011/NEMOGCM/NEMO/TOP_SRC/PISCES/p4zsed.F90

    r2977 r3124  
    337337      !!--------------------------------------------------------------------- 
    338338 
    339       ! Compute dust at nit000 or only if there is more than 1 time record in dust file 
     339      ! Compute dust at nittrc000 or only if there is more than 1 time record in dust file 
    340340      IF( ln_dust ) THEN 
    341          IF( kt == nit000 .OR. ( kt /= nit000 .AND. ntimes_dust > 1 ) ) THEN 
     341         IF( kt == nittrc000 .OR. ( kt /= nittrc000 .AND. ntimes_dust > 1 ) ) THEN 
    342342            CALL fld_read( kt, 1, sf_dust ) 
    343343            dust(:,:) = sf_dust(1)%fnow(:,:,1) 
     
    346346 
    347347      ! N/P and Si releases due to coastal rivers 
    348       ! Compute river at nit000 or only if there is more than 1 time record in river file 
     348      ! Compute river at nittrc000 or only if there is more than 1 time record in river file 
    349349      ! ----------------------------------------- 
    350350      IF( ln_river ) THEN 
    351          IF( kt == nit000 .OR. ( kt /= nit000 .AND. ntimes_riv > 1 ) ) THEN 
     351         IF( kt == nittrc000 .OR. ( kt /= nittrc000 .AND. ntimes_riv > 1 ) ) THEN 
    352352            CALL fld_read( kt, 1, sf_riverdic ) 
    353353            CALL fld_read( kt, 1, sf_riverdoc ) 
     
    362362      ENDIF 
    363363 
    364       ! Compute N deposition at nit000 or only if there is more than 1 time record in N deposition file 
     364      ! Compute N deposition at nittrc000 or only if there is more than 1 time record in N deposition file 
    365365      IF( ln_ndepo ) THEN 
    366          IF( kt == nit000 .OR. ( kt /= nit000 .AND. ntimes_ndep > 1 ) ) THEN 
     366         IF( kt == nittrc000 .OR. ( kt /= nittrc000 .AND. ntimes_ndep > 1 ) ) THEN 
    367367            CALL fld_read( kt, 1, sf_ndepo ) 
    368368            DO jj = 1, jpj 
     
    384384      !! 
    385385      !! ** method  :   read the files and compute the budget 
    386       !!                called at the first timestep (nit000) 
     386      !!                called at the first timestep (nittrc000) 
    387387      !! 
    388388      !! ** input   :   external netcdf files 
Note: See TracChangeset for help on using the changeset viewer.