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

Changeset 655 for trunk/NEMO/TOP_SRC


Ignore:
Timestamp:
2007-04-18T11:34:10+02:00 (17 years ago)
Author:
opalod
Message:

nemo_v2_update_016:CE:Tuning of the iron concentration to a minimum level that is set to the detection limit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/TOP_SRC/SMS/p4zlim.F

    r617 r655  
    4545CC ================== 
    4646      INTEGER ji, jj, jk 
    47       REAL xlim1,xlim2,xlim3,xlim4 
     47      REAL xlim1,xlim2,xlim3,xlim4,zno3,zferlim 
    4848      REAL xconctemp,xconctemp2,xconctempn,xconctempn2 
    4949C 
     
    5252C  ------------------------------------- 
    5353C 
    54  
    55         trn(:,:,:,jpfer)=max(trn(:,:,:,jpfer),1.E-11) 
     54        do jk=1,jpk 
     55          do jj=1,jpj 
     56            do ji=1,jpi 
     57        zno3=trn(ji,jj,jk,jpno3)*1E6 
     58        zferlim=max(1.5E-11*(zno3/40)**2,3E-12) 
     59        zferlim=min(zferlim,1.5E-11) 
     60        trn(ji,jj,jk,jpfer)=max(trn(ji,jj,jk,jpfer),zferlim) 
     61            end do 
     62          end do 
     63        end do 
    5664C 
    5765C  Computation of a variable Ks for iron on diatoms 
Note: See TracChangeset for help on using the changeset viewer.