ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/samples/argon/lj.md
Revision: 1024
Committed: Wed Aug 30 18:42:29 2006 UTC (18 years, 8 months ago) by tim
File size: 322 byte(s)
Log Message:
Massive changes preparing for release of OOPSE-4: The main difference
is that the new MD file format (.md, .dump, .eor) now contains meta-data
information along with the configuration information.

File Contents

# Content
1 #ifndef __LJ_MD__
2 #define __LJ_MD__
3 molecule{
4 name = "Ar";
5
6 atom[0]{
7 type="Ar";
8 position( 0.0, 0.0, 0.0 );
9 }
10 }
11 molecule{
12 name = "Ne";
13
14 atom[0]{
15 type="Ne";
16 position( 0.0, 0.0, 0.0 );
17 }
18 }
19 molecule{
20 name = "He";
21
22 atom[0]{
23 type="He";
24 position( 0.0, 0.0, 0.0 );
25 }
26 }
27 #endif