12345678910111213141516 |
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- /// \file cropsowing.h
- /// \brief Seasonality and sowing date calculations
- /// \author Mats Lindeskog
- /// $Date: 2018-02-02 18:01:35 +0100 (ven, 02 fév 2018) $
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- #ifndef LPJ_GUESS_CROPSOWING_H
- #define LPJ_GUESS_CROPSOWING_H
- /// Monitors climate history relevant for sowing date calculation. Calculates initial sowing dates/windows
- void crop_sowing_gridcell(Gridcell& gridcell, bool firstsimulationday);
- /// Handles sowing date calculations for crop pft:s on patch level
- void crop_sowing_patch(Patch& patch);
- #endif // LPJ_GUESS_CROPSOWING_H
|