Name

mdsim — An execution thread of a simulation

Description

The mdsim element holds information about a MD simulation.

Processing expectations

Initialize the particle set, Hamiltonian and propagator to perform MD simulation.

Parents

process

Children

The following elements occur in simulation: particlesets, particlelayout, potential, ensemble, record, loop

Attributes

None

Implementation details

The mdsim element forms a unit of a MD simulation. Within a mdsim element, the potential and ensemble are uniquely defined and they operate on a particle set. The simulation element can contain a number of mdsim elements with different potentials and ensembles.

Examples

This example shows to how to calculate the total energy and atomic forces using MEAM potential. The particlesets is assumed to exist at a higher level.

  <mdsim>
     <potential name="MEAM">
        <parameter name="file">MEAMPOT.Si</parameter>
     </potential>
     <ensemble name="static" method="force"/>
     <loop blocks="1" steps="1"/>      
  </mdsim>