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

Ignore:
Timestamp:
2011-12-05T14:55:12+01:00 (12 years ago)
Author:
cetlod
Message:

Perform the initialisation phase of PISCES at nit000 rather than nittrc000

File:
1 edited

Legend:

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

    r3160 r3192  
    340340      IF( nn_timing == 1 )  CALL timing_start('p4z_sbc') 
    341341      ! 
    342       ! Compute dust at nittrc000 or only if there is more than 1 time record in dust file 
     342      ! Compute dust at nit000 or only if there is more than 1 time record in dust file 
    343343      IF( ln_dust ) THEN 
    344          IF( kt == nittrc000 .OR. ( kt /= nittrc000 .AND. ntimes_dust > 1 ) ) THEN 
     344         IF( kt == nit000 .OR. ( kt /= nit000 .AND. ntimes_dust > 1 ) ) THEN 
    345345            CALL fld_read( kt, 1, sf_dust ) 
    346346            dust(:,:) = sf_dust(1)%fnow(:,:,1) 
     
    349349 
    350350      ! N/P and Si releases due to coastal rivers 
    351       ! Compute river at nittrc000 or only if there is more than 1 time record in river file 
     351      ! Compute river at nit000 or only if there is more than 1 time record in river file 
    352352      ! ----------------------------------------- 
    353353      IF( ln_river ) THEN 
    354          IF( kt == nittrc000 .OR. ( kt /= nittrc000 .AND. ntimes_riv > 1 ) ) THEN 
     354         IF( kt == nit000 .OR. ( kt /= nit000 .AND. ntimes_riv > 1 ) ) THEN 
    355355            CALL fld_read( kt, 1, sf_riverdic ) 
    356356            CALL fld_read( kt, 1, sf_riverdoc ) 
     
    365365      ENDIF 
    366366 
    367       ! Compute N deposition at nittrc000 or only if there is more than 1 time record in N deposition file 
     367      ! Compute N deposition at nit000 or only if there is more than 1 time record in N deposition file 
    368368      IF( ln_ndepo ) THEN 
    369          IF( kt == nittrc000 .OR. ( kt /= nittrc000 .AND. ntimes_ndep > 1 ) ) THEN 
     369         IF( kt == nit000 .OR. ( kt /= nit000 .AND. ntimes_ndep > 1 ) ) THEN 
    370370            CALL fld_read( kt, 1, sf_ndepo ) 
    371371            DO jj = 1, jpj 
     
    597597      ENDIF 
    598598      ! 
     599      IF( ll_sbc ) CALL p4z_sbc( nit000 )  
     600      ! 
    599601      IF(lwp) THEN  
    600602         WRITE(numout,*) 
Note: See TracChangeset for help on using the changeset viewer.