01-kitchen_sink_viz_dreammgrouped_wildcard.mdl 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /****************************************************************************
  2. * Test 01: Nearly every parser option.
  3. *
  4. * A mostly non-sensical test which simply exercises the parser checking for
  5. * anomalous behavior. This test should not provoke any errors, provided
  6. * that counting-5.txt does not exist in its reaction output directory.
  7. * (This is to test the "no overwrite" output mode for counting.)
  8. *
  9. * This variant produces DREAMM grouped style output, and specifies output
  10. * times using TIME_POINTS, exercising all of the wildcard matching variants
  11. * in the VIZ output blocks.
  12. *
  13. * Author: Jed Wing <[email protected]>
  14. * Date: 2008-04-04
  15. ****************************************************************************/
  16. basename = "01-kitchen_sink_viz_dreammgrouped_wildcard"
  17. INCLUDE_FILE = "defaults.mdl"
  18. INCLUDE_FILE = "common.mdl"
  19. VIZ_OUTPUT
  20. {
  21. MODE = DREAMM_V3_GROUPED
  22. FILENAME = vizdir & "world2"
  23. MOLECULES
  24. {
  25. NAME_LIST { "s_*" c_s_0 }
  26. TIME_POINTS
  27. {
  28. ALL_DATA @ ALL_TIMES
  29. POSITIONS @ [2e-6, 3e-6]
  30. ORIENTATIONS @ [3e-6, 4e-6]
  31. }
  32. }
  33. MESHES
  34. {
  35. NAME_LIST { "world2.*" world.big_object.box1 }
  36. TIME_POINTS
  37. {
  38. ALL_DATA @ [1e-6]
  39. GEOMETRY @ [2e-6, 3e-6]
  40. REGION_DATA @ [3e-6, 4e-6]
  41. }
  42. }
  43. }
  44. VIZ_OUTPUT
  45. {
  46. MODE = DREAMM_V3_GROUPED
  47. FILENAME = vizdir & "world"
  48. MOLECULES
  49. {
  50. NAME_LIST { "m_*" }
  51. NAME_LIST { m_g_0=5 m_g_1=4 }
  52. TIME_POINTS
  53. {
  54. POSITIONS @ ALL_TIMES
  55. ALL_DATA @ [3e-6, 4e-6]
  56. ORIENTATIONS @ [4e-6, 5e-6]
  57. }
  58. }
  59. MESHES
  60. {
  61. NAME_LIST { "world.*" }
  62. NAME_LIST { world.big_object.box1 }
  63. NAME_LIST { world2.rs8 }
  64. TIME_POINTS
  65. {
  66. ALL_DATA @ [2e-6]
  67. GEOMETRY @ [3e-6, 4e-6]
  68. REGION_DATA @ [4e-6, 5e-6]
  69. }
  70. }
  71. }