soilwater.h 920 B

12345678910111213141516171819202122232425
  1. ///////////////////////////////////////////////////////////////////////////////////////
  2. /// \file soilwater.h
  3. /// \brief Soil hydrology and snow
  4. ///
  5. /// Version including evaporation from soil surface, based on work by Dieter Gerten,
  6. /// Sibyll Schaphoff and Wolfgang Lucht, Potsdam
  7. ///
  8. /// \author Ben Smith
  9. /// $Date: 2018-02-02 18:01:35 +0100 (ven, 02 fév 2018) $
  10. ///
  11. ///////////////////////////////////////////////////////////////////////////////////////
  12. // WHAT SHOULD THIS FILE CONTAIN?
  13. // Module header files need normally contain only declarations of functions defined in
  14. // the module that are to be accessible to the calling framework or to other modules.
  15. #ifndef LPJ_GUESS_SOILWATER_H
  16. #define LPJ_GUESS_SOILWATER_H
  17. #include "guess.h"
  18. void initial_infiltration(Patch& patch, Climate& climate);
  19. void irrigation(Patch& patch);
  20. void soilwater(Patch& patch, Climate& climate);
  21. #endif // LPJ_GUESS_SOILWATER_H