Changes between Version 84 and Version 85 of DevelopmentActivities/MergeOCN/Vuichard


Ignore:
Timestamp:
2014-05-05T17:40:42+02:00 (10 years ago)
Author:
nvuilsce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/MergeOCN/Vuichard

    v84 v85  
    306306=== lpj_establish === 
    307307  
    308  * definition of 2 variables. One for constraining the establishment by size of vegetation (d_ind_c), the other for constraining the establishment by available nutrients (d_ind_n). They are both set to the value of d_ind. This is useless or there is a biger problem ... 
    309   
     308 * definition of 2 variables. One for constraining the establishment by size of vegetation (d_ind_c), the other for constraining the establishment by available nutrients (d_ind_n). They are both set to the value of d_ind. This is useless or there is a biger problem .. 
     309 
     310 * In OCN, the following block of code fill all the new biomass into the labile pool  
     311{{{ 
     312 ! establishment into existing population, C flows 
     313          WHERE(d_ind(:,j).GT.min_stomate.AND.total_bm_c(:).GT.min_stomate) 
     314              
     315             bm_new(:) = total_bm_sapl(:,icarbon) * biomass(:,j,k,icarbon) / total_bm_c(:) 
     316              
     317             biomass(:,j,ilabile,icarbon) = biomass(:,j,ilabile,icarbon) + & 
     318                  bm_new(:) 
     319}}} 
     320We replace '''ilabile''' by '''k''' in order to fill all the biomass pools and not only the labile one.  
     321