Changes between Version 61 and Version 62 of DevelopmentActivities/MergeOCN/Vuichard


Ignore:
Timestamp:
2014-03-10T13:40:58+01:00 (10 years ago)
Author:
nvuilsce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/MergeOCN/Vuichard

    v61 v62  
    205205where n3 has units of umol(Chl) g(N), and Lc is cumula- tive LAI from the top of the canopy. '' 
    206206 
     207 * Here below are the equations implemented in OCN (routine diffuco_trans_cexchange): 
     208{{{ 
     209! n0        : nitrogen concentration in the top layer   
     210! ntot      : total Canopy N               g/m2[ground] 
     211n0(iainia) = ntot(iainia) * kN / (1. - EXP( -kN * lai(iainia,jv) ))  
     212}}} 
     213{{{ 
     214!  Leaf N (mmol/m2) based on prescribed profile 
     215nfmol(iainia) = n0(iainia) * EXP( -kN * lc(iainia) ) * 1000.0 / 14.0  
     216}}} 
     217{{{ 
     218! Chlorophyll content of a layer 
     219n3l(iainia) = (6.0 - 3.6 * EXP( -0.7 * lc(iainia) ) ) & 
     220& * nf(iainia,jv)/nf_fix(jv) ! adjust to changing N leaf conc 
     221}}} 
     222