Update list-maintainers to output redmine syntax
[hoomd-blue.git] / share / hoomd / examples / init_xml.xml
blob98086cc72911816547227b4c6513df9a92cd805f
1 <?xml version="1.0" encoding="UTF-8"?>
2 <hoomd_xml>
3 <configuration time_step="0">
4 <box Lx="10" Ly="10" Lz="10"/>
5 <!-- Setup the initial condition to place all particles in a line -->
6 <position>
7 -3 0 0
8 -2 0 0
9 -1 0 0
10 0 0 0
11 1 0 0
12 2 0 0
13 3 0 0
14 </position>
15 <!-- Name the first 3 particles A and the rest B -->
16 <type>
24 </type>
25 <!-- Bond the particles together into a polymer chain -->
26 <bond>
27 polymer 0 1
28 polymer 1 2
29 polymer 2 3
30 polymer 3 4
31 polymer 4 5
32 polymer 5 6
33 </bond>
34 <!-- Give the particles a little kick with an initial velocity -->
35 <velocity>
36 1 2 3
37 3 2 1
38 1 0 0
39 0 1 0
40 0 0 1
41 -1 -2 -3
42 -3 -2 -1
43 </velocity>
44 </configuration>
45 </hoomd_xml>