1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /****************************************************************************
- * 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 non-grouped style output, and specifies output
- * times using TIME_POINTS.
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- basename = "01-kitchen_sink_viz_dreamm_time"
- INCLUDE_FILE = "defaults.mdl"
- INCLUDE_FILE = "common.mdl"
- VIZ_OUTPUT
- {
- MODE = DREAMM_V3
- VIZ_MESH_FORMAT = ASCII
- VIZ_MOLECULE_FORMAT = BINARY
- FILENAME = vizdir & "world"
- MOLECULES
- {
- NAME_LIST { ALL_MOLECULES }
- TIME_POINTS
- {
- ALL_DATA @ ALL_TIMES
- POSITIONS @ [2e-6, 3e-6]
- ORIENTATIONS @ [3e-6, 4e-6]
- }
- }
- MESHES
- {
- NAME_LIST { ALL_MESHES }
- TIME_POINTS
- {
- ALL_DATA @ [1e-6]
- GEOMETRY @ [3e-6, 4e-6]
- REGION_DATA @ [2e-6, 4e-6]
- }
- }
- }
|