01-kitchen_sink_viz_default_iter.mdl 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 the default type of VIZ output (DREAMM mode), and
  10. * specifies output times using ITERATION_NUMBERS.
  11. *
  12. * Author: Jed Wing <[email protected]>
  13. * Date: 2008-04-04
  14. ****************************************************************************/
  15. basename = "01-kitchen_sink_viz_default_iter"
  16. INCLUDE_FILE = "defaults.mdl"
  17. INCLUDE_FILE = "common.mdl"
  18. VIZ_OUTPUT
  19. {
  20. VIZ_MESH_FORMAT = BINARY
  21. FILENAME = vizdir & "world"
  22. MOLECULES
  23. {
  24. NAME_LIST { ALL_MOLECULES }
  25. ITERATION_NUMBERS
  26. {
  27. ALL_DATA @ ALL_ITERATIONS
  28. POSITIONS @ [2, 3]
  29. ORIENTATIONS @ [3, 4]
  30. }
  31. }
  32. MESHES
  33. {
  34. NAME_LIST { ALL_MESHES }
  35. ITERATION_NUMBERS
  36. {
  37. ALL_DATA @ [1]
  38. GEOMETRY @ [2, 3]
  39. REGION_DATA @ [3, 4]
  40. }
  41. }
  42. }