Back to main menu

Format: CONFIG

Name: DL_POLY configuration file

Extension: none (file must be named CONFIG for being used in DL_POLY)

Specification: DL_POLY web site

Visualization programs: Aten, gdis, VESTA

Restrictions

The format of DL_POLY configuration files (CONFIG, REVCON, CFGMIN...) is somewhat permissive concerning "atom names", as it can be any character string the user wants. Sometimes the names chosen by the users can be confusing (e.g. using "Os" for oxygen shells can lead to a confusion with osmium), or completely impossible to interpret by a conversion program (e.g. "atom1", "elem2" etc.).

Atomsk can read CONFIG (and REVCON, CFGMIN...) files under some restrictions. As mentionned in the specification, the first line of the file is a comment. The second line must contain three integers. The first one is the number levcfg, which specifies the "level" of the CONFIG file: 0 means only atoms (and shells) positions are present; 1 means that velocities are present; and 2 means that velocities and forces are present. Atomsk will read these properties when they exist. The second integer imcon specifies the boundary conditions; this is ignored by Atomsk. Finally the third integer megatm specifies the total number of particles (atoms+shells).

Then come the three vectors of the supercell, and the description of all atoms. The "name" of atoms should start with their actual atomic symbol, followed by any string or number (e.g. C1, O1, Nb_d20...). If shells are present, their name should also start with the atomic symbol, and contain the string "_s" (e.g. C_s, O_s, Nb_d20_s...). If it is not the case, then the atom species may not be recognized, may be replaced by the symbol "XX" or by zeros, or shells may be interpreted as atoms or cores.

Atomsk can also read HISTORY files, however by default only the first snapshot will be read. In order to read all the snapshots and convert them to several individual files, one can use the mode --one-in-all.

When writing CONFIG files, Atomsk always assumes imcon=3 i.e. 3-D periodic boundary conditions (what is called "parallelepiped periodic boundary" in the DL_POLY manual). The atom species of each atom is written, followed by its position, and its velocity and force if they are defined. Then if shells are defined, each one is written just after the corresponding core, with "_s" appened to the element name. If levcfg>0 then the velocities and forces of the shells are set to zero. The output file will look like:

CONFIG

#comment
<levcfg> 3 <NP>
<H(1,1)> <H(1,2)> <H(1,3)>
<H(2,1)> <H(2,2)> <H(2,3)>
<H(3,1)> <H(3,2)> <H(3,3)>
<atom1> 1
    <x1> <y1> <z1>
    <v1> <v1> <v1>
    <f1> <f1> <f1>
<atom1>_s 2
    <x2> <y2> <z2>
    0.00 0.00 0.00
    0.00 0.00 0.00
<atom2> 3
    <x3> <y3> <z3>
    <v3> <v3> <v3>
    <f3> <f3> <f3>
<atom2>_s 4
    <x4> <y4> <z4>
    0.00 0.00 0.00
    0.00 0.00 0.00
... ... ...
<atomN> (N-1)
    <x(N-1)> <y(N-1)> <z(N-1)>
    <v(N-1)> <v(N-1)> <v(N-1)>
    <f(N-1)> <f(N-1)> <f(N-1)>
<atomN>_s N
    <xN> <yN> <zN>
    0.00 0.00 0.00
    0.00 0.00 0.00

Note that the FIELD file used by DL_POLY must match the CONFIG file. In the FIELD file the interatomic potential is defined for "molecules", therefore the CONFIG file must be a succession of the same elementary pattern. A convenient way to achieve this with Atomsk is, starting with a single unit cell, to use the option -duplicate to create supercells. In case a shell-model shall be used, one can either include the shells in the unit cell or use the option -create-shells to automatically add shells.

Examples

Back to main menu