| Revision: | 1390 |
| Committed: | Wed Nov 25 20:02:06 2009 UTC (15 years, 11 months ago) by gezelter |
| Original Path: | trunk/samples/SMIPD/metal/QSC/metals.md |
| File size: | 424 byte(s) |
| Log Message: | Almost all of the changes necessary to create OpenMD out of our old project (OOPSE-4) |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | chuckv | 1326 | #ifndef __METALS_MD__ |
| 2 | #define __METALS_MD__ | ||
| 3 | |||
| 4 | molecule{ | ||
| 5 | name = "Au"; | ||
| 6 | |||
| 7 | atom[0]{ | ||
| 8 | type="Au"; | ||
| 9 | position( 0.0, 0.0, 0.0 ); | ||
| 10 | } | ||
| 11 | } | ||
| 12 | molecule{ | ||
| 13 | name = "Ag"; | ||
| 14 | |||
| 15 | atom[0]{ | ||
| 16 | type="Ag"; | ||
| 17 | position( 0.0, 0.0, 0.0 ); | ||
| 18 | } | ||
| 19 | } | ||
| 20 | molecule{ | ||
| 21 | name = "Pt"; | ||
| 22 | |||
| 23 | atom[0]{ | ||
| 24 | type="Pt"; | ||
| 25 | position( 0.0, 0.0, 0.0 ); | ||
| 26 | } | ||
| 27 | } | ||
| 28 | gezelter | 1390 | molecule{ |
| 29 | name = "Cu"; | ||
| 30 | |||
| 31 | atom[0]{ | ||
| 32 | type="Cu"; | ||
| 33 | position( 0.0, 0.0, 0.0 ); | ||
| 34 | } | ||
| 35 | } | ||
| 36 | chuckv | 1326 | #endif |