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/trcini.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/trcini.F90

    r3174 r3192  
    7777 
    7878      CALL trc_nam                  ! read passive tracers namelists 
     79      !                                                              ! masked grid volume 
     80      DO jk = 1, jpk 
     81         cvol(:,:,jk) = e1e2t(:,:) * fse3t(:,:,jk) * tmask(:,:,jk) 
     82      END DO 
     83      IF( lk_degrad ) cvol(:,:,:) = cvol(:,:,:) * facvol(:,:,:)      ! degrad option: reduction by facvol 
     84      !                                                              ! total volume of the ocean  
     85      areatot = glob_sum( cvol(:,:,:) ) 
    7986 
    8087      IF( lk_lobster ) THEN   ;   CALL trc_ini_lobster      ! LOBSTER bio-model 
     
    139146      IF( ln_zps .AND. .NOT. lk_c1d )   &              ! Partial steps: before horizontal gradient of passive 
    140147        &    CALL zps_hde( nit000, jptra, trn, gtru, gtrv )       ! tracers at the bottom ocean level 
    141       !                                                              ! masked grid volume 
    142       DO jk = 1, jpk 
    143          cvol(:,:,jk) = e1e2t(:,:) * fse3t(:,:,jk) * tmask(:,:,jk) 
    144       END DO 
    145       IF( lk_degrad ) cvol(:,:,:) = cvol(:,:,:) * facvol(:,:,:)      ! degrad option: reduction by facvol 
    146       !                                                              ! total volume of the ocean  
    147       areatot = glob_sum( cvol(:,:,:) ) 
    148148 
    149149      ! 
Note: See TracChangeset for help on using the changeset viewer.