Changes between Version 54 and Version 55 of Branches/MergeOCN/Goll


Ignore:
Timestamp:
2015-06-15T14:12:00+02:00 (9 years ago)
Author:
dgoll
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Branches/MergeOCN/Goll

    v54 v55  
    489489}}} 
    490490 
    491 === 10. Parameter value issue: pft_parameters.f90 === 
     491== 10. Parameter value issue: pft_parameters.f90 == 
    492492The value for leaffall is set to undef for a couple of PFT, but it is used in stomate_turnover.f90 for every PFT. I fixed this by setting all undef to 10. like all the other PFTs: 
    493493{{{ 
     
    500500      CALL getin_p('LEAFFALL',leaffall) 
    501501}}} 
    502 === 11. Mass conservation issue: stomate_turnover.f90 === 
     502== 11. Mass conservation issue: stomate_turnover.f90 == 
    503503The mass of biomass and circ_class_biomass starts to diverge after leaf fall in stomate_turnover.f90. 
    504504I rewrote the code in a more fail-safe format and thereby fixed the bug. I don't know where the error is in the original piece of code. 
     
    615615}}} 
    616616 
    617 === 12. Mass conservation issue: stomate_turnover.f90 === 
     617== 12. Mass conservation issue: stomate_turnover.f90 == 
    618618When updating the circ_class_biomass(*,ilabile,initrogen) with nitrogen from recyling the exisiting nitrogen in was forgotten.  
    619619{{{ 
     
    636636                         + circ_class_biomass(:,ivm,icirc,iroot ,initrogen) * recycle_root(ivm) 
    637637}}}     
    638 === 13. Stoichiometry issue: stomate_growth_fun_all.f90 === 
     638== 13. Stoichiometry issue: stomate_growth_fun_all.f90 == 
    639639In case of limited growth (alloc_tot(ipts,j,icarbon).LT.min_stomate) all *_alloc must be set to zero: 
    640640{{{