123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /****************************************************************************
- * Test 01: Nearly every parser option.
- *
- * A mostly non-sensical test which simply exercises the parser checking for
- * anomalous behavior. This test should not provoke any errors, provided
- * that counting-5.txt does not exist in its reaction output directory.
- * (This is to test the "no overwrite" output mode for counting.)
- *
- * This variant produces DREAMM grouped style output, and specifies output
- * times using TIME_POINTS, exercising all of the wildcard matching variants
- * in the VIZ output blocks.
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- basename = "01-kitchen_sink_viz_dreammgrouped_wildcard"
- INCLUDE_FILE = "defaults.mdl"
- INCLUDE_FILE = "common.mdl"
- VIZ_OUTPUT
- {
- MODE = DREAMM_V3_GROUPED
- FILENAME = vizdir & "world2"
- MOLECULES
- {
- NAME_LIST { "s_*" c_s_0 }
- TIME_POINTS
- {
- ALL_DATA @ ALL_TIMES
- POSITIONS @ [2e-6, 3e-6]
- ORIENTATIONS @ [3e-6, 4e-6]
- }
- }
- MESHES
- {
- NAME_LIST { "world2.*" world.big_object.box1 }
- TIME_POINTS
- {
- ALL_DATA @ [1e-6]
- GEOMETRY @ [2e-6, 3e-6]
- REGION_DATA @ [3e-6, 4e-6]
- }
- }
- }
- VIZ_OUTPUT
- {
- MODE = DREAMM_V3_GROUPED
- FILENAME = vizdir & "world"
- MOLECULES
- {
- NAME_LIST { "m_*" }
- NAME_LIST { m_g_0=5 m_g_1=4 }
- TIME_POINTS
- {
- POSITIONS @ ALL_TIMES
- ALL_DATA @ [3e-6, 4e-6]
- ORIENTATIONS @ [4e-6, 5e-6]
- }
- }
- MESHES
- {
- NAME_LIST { "world.*" }
- NAME_LIST { world.big_object.box1 }
- NAME_LIST { world2.rs8 }
- TIME_POINTS
- {
- ALL_DATA @ [2e-6]
- GEOMETRY @ [3e-6, 4e-6]
- REGION_DATA @ [4e-6, 5e-6]
- }
- }
- }
|