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 433 for trunk/NEMO/TOP_SRC/trcdtr.F90 – NEMO

Ignore:
Timestamp:
2006-04-10T17:40:29+02:00 (18 years ago)
Author:
opalod
Message:

nemo_v1_update_044 : CT : update the passive tracers TOP component and the standard GYRE configuration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/TOP_SRC/trcdtr.F90

    r383 r433  
    109109      trn(:,:,:,jpdfe) = bioma0*5.E-6 
    110110      trn(:,:,:,jpnfe) = bioma0*5.E-6 
    111       trn(:,:,:,jpdsi) = bioma0*0.15 
     111      trn(:,:,:,jpdsi) = bioma0*5.E-6 
    112112      trn(:,:,:,jpnch) = bioma0*12./55. 
    113113      trn(:,:,:,jpdch) = bioma0*12./55. 
     
    235235                  trn(ji,jj,jk,jpno3)=2.*tmask(ji,jj,jk) 
    236236               ELSE 
    237                   trn(ji,jj,jk,jpno3)=(13.24*(rhd(ji,jj,jk)*1000)-324.4)*tmask(ji,jj,jk) 
     237                  trn(ji,jj,jk,jpno3)=(15.55*(rhd(ji,jj,jk)*1000)-380.11)*tmask(ji,jj,jk) 
    238238               ENDIF 
    239239            END DO 
     
    244244  
    245245!! general case 
    246  
    247       trn(:,:,:,:)=0.1 
     246      do jn = 1, jptra 
     247         trn(:,:,:,jn)=0.1*tmask(:,:,:) 
     248      enddo 
    248249 
    249250#endif 
     
    252253!!   Initialization of tracer from a file 
    253254!!   that may also be used for damping 
    254   
    255255      CALL dta_trc( nit000 ) 
    256       DO  jn = 1, jptra 
    257         IF( lutini(jn) ) THEN  
     256      DO  jk = 1, jptra 
     257        IF( lutini(jk) ) THEN  
    258258!! initialisation from file 
    259            trn(:,:,:,jn) = trdta(:,:,:,jn) 
     259           trn(:,:,:,jk) = trdta(:,:,:,jk)*tmask(:,:,:) 
    260260        ENDIF 
    261261      END DO 
Note: See TracChangeset for help on using the changeset viewer.