Changes between Version 86 and Version 87 of DevelopmentActivities/MergeOCN/Vuichard


Ignore:
Timestamp:
2014-05-06T13:54:52+02:00 (10 years ago)
Author:
nvuilsce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/MergeOCN/Vuichard

    v86 v87  
    336336 The first occurance is useless. It is the same in the trunk. In OCN, it is problematic because we limit total_bm_sapl(:,initrogen) to the soil_n_min only after the first block of initialization. And consequently, this limitation is not accounted for, in the rest of the code ... This is correct in the merge version 
    337337 
    338   
    339   
     338 * We modify the following block of code : 
     339{{{ 
     340estab_rate_max_tree(:) = estab_max_tree * factor(:) * nstress_season(:,j)  
     341                WHERE(nstress_season(:,j) .LE.0.11) 
     342                   estab_rate_max_tree(:)=MAX( estab_rate_max_tree(:), mortality(:,j)) 
     343                ENDWHERE 
     344}}} 
     345 by  
     346{{{ 
     347estab_rate_max_tree(:) = estab_max_tree * factor(:) * MAX(0.11, nstress_season(:,j))  
     348}}} 
     349