ttb.rc 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. !#######################################################################
  2. !
  3. ! TM Test Bench
  4. !
  5. ! Compare output of two or more runs to see if these are still
  6. ! exactly the same.
  7. !
  8. ! Supported tests:
  9. !
  10. ! 'restart'
  11. !
  12. ! Perform 1 long run and 2 smaller with restart in between.
  13. ! Final output should be the same.
  14. ! This is used to test if the restart function works properly.
  15. !
  16. ! 'change'
  17. !
  18. ! Compare the output of two or more runs that are supposed
  19. ! to be the same.
  20. !
  21. !#######################################################################
  22. ! ------------------------------------------------
  23. ! ttb settings
  24. ! ------------------------------------------------
  25. ! tests to be performed:
  26. !ttb.tests : restart
  27. ttb.tests : change
  28. ! template rcfile:
  29. ttb.rcfile : tm5.rc
  30. ! no runs (True|False) ?
  31. ! overwritten by '--no-run' option:
  32. ttb.no-run : False
  33. ! ------------------------------------------------
  34. ! restart test
  35. ! ------------------------------------------------
  36. ! time range:
  37. ttb.restart.timerange.start : 2008-01-01 00:00:00
  38. ttb.restart.timerange.end : 2008-01-01 08:00:00
  39. ! ------------------------------------------------
  40. ! change test
  41. ! ------------------------------------------------
  42. ! runid's for runs to be performed:
  43. ! o the first is the id for the reference run,
  44. ! output of other runs is compared to this one;
  45. ! o proper settings for each run should be set in
  46. ! the template rcfile using '#if' keywords etc:
  47. ttb.change.runids : ref test
  48. ! do not run some of them ?
  49. ! for example the reference run if already available:
  50. ttb.change.runids.no-run :
  51. ! what to compare ? list with one or more keywords:
  52. ! 'restart' : restart files (best choice!)
  53. ! 'save' : save files
  54. ! 'save-cy1' : save files in cy1 format
  55. ! 'budget_global' : global budget file
  56. ! 'budget_global-cy1' : global budget file in cy1 format (dataset for each region)
  57. ttb.change.compare : restart
  58. ! ------------------------------------------------
  59. ! end
  60. ! ------------------------------------------------