cropsowing.h 768 B

12345678910111213141516
  1. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2. /// \file cropsowing.h
  3. /// \brief Seasonality and sowing date calculations
  4. /// \author Mats Lindeskog
  5. /// $Date: 2018-02-02 18:01:35 +0100 (Fri, 02 Feb 2018) $
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  7. #ifndef LPJ_GUESS_CROPSOWING_H
  8. #define LPJ_GUESS_CROPSOWING_H
  9. /// Monitors climate history relevant for sowing date calculation. Calculates initial sowing dates/windows
  10. void crop_sowing_gridcell(Gridcell& gridcell, bool firstsimulationday);
  11. /// Handles sowing date calculations for crop pft:s on patch level
  12. void crop_sowing_patch(Patch& patch);
  13. #endif // LPJ_GUESS_CROPSOWING_H