inputpage.h 732 B

12345678910111213141516
  1. /** \page input_page Input modules - providing forcing data to the model
  2. LPJ-GUESS gets its forcing data from an input module, a subclass of the InputModule class.
  3. The model is distributed with the input modules CRUInput (for the CRU dataset) and DemoInput
  4. (for demonstration purposes, reads in a toy dataset).
  5. The user of the model will often need to either modify one of the supplied input modules or
  6. create a new input module. In some cases it may also be possible to inherit from an existing
  7. input module and adjust their behaviour by overriding some of its member functions.
  8. - \ref InputModule
  9. - \ref CRUInput
  10. - \ref DemoInput
  11. - \ref GetclimInput
  12. - \ref REGISTER_INPUT_MODULE - A macro for registering a new input module
  13. */