cropphenology.h 850 B

123456789101112131415161718
  1. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2. /// \file cropphenology.h
  3. /// \brief Crop phenology including phu calculations
  4. /// \author Mats Lindeskog
  5. /// $Date: 2018-02-02 18:01:35 +0100 (Fri, 02 Feb 2018) $
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  7. #ifndef LPJ_GUESS_CROPPHENOLOGY_H
  8. #define LPJ_GUESS_CROPPHENOLOGY_H
  9. /// Calculation of down-scaling of lai during crop senescence
  10. double senescence_curve(Pft& pft, double fphu);
  11. /// Handles heat unit and harvest index calculation and identifies harvest, senescence and intercrop events.
  12. void crop_phenology(Patch& patch);
  13. /// Updates crop phen from yesterday's lai_daily
  14. void leaf_phenology_crop(Pft& pft, Patch& patch);
  15. #endif // LPJ_GUESS_CROPPHENOLOGY_H