bvoc.h 937 B

123456789101112131415161718192021222324252627
  1. ///////////////////////////////////////////////////////////////////////////////////////
  2. /// \file bvoc.h
  3. /// \brief The BVOC module header file
  4. ///
  5. /// Calculation of VOC production and emission by vegetation.
  6. ///
  7. /// \author Guy Schurgers (using Almut's previous attempts)
  8. /// $Date: 2014-09-09 10:49:13 +0200 (mar, 09 sep 2014) $
  9. ///
  10. ///////////////////////////////////////////////////////////////////////////////////////
  11. // WHAT SHOULD THIS FILE CONTAIN?
  12. // Module header files need normally contain only declarations of functions
  13. // defined in the module that are to be accessible to the calling framework or
  14. // to other modules.
  15. #ifndef LPJ_GUESS_BVOC_H
  16. #define LPJ_GUESS_BVOC_H
  17. #include "guess.h"
  18. void bvoc(double temp, double hours, double rad, Climate& climate, Patch& patch,
  19. Individual& indiv, const Pft& pft, const PhotosynthesisResult& phot,
  20. double adtmm, const Day& day);
  21. void initbvoc();
  22. #endif // LPJ_GUESS_BVOC_H