CHARMM c33b2 ensemble.doc



File: Ensemble -=- Node: Top
Up: (commands.doc) -=- Next: Syntax


              ENSEMBLE averaging / replica exchange

                       Robert Best, 2003/5


    The ENSEMBLE module of CHARMM permits one to start a number of
copies of CHARMM, communicating using MPI, with some small amount
of information being shared between the copies. There are a number
of applications of this:
        (i) to average restraints over an ensemble (especially
                useful for NOE's/spin labels in unfolded states (1,2).
        (ii) to perform replica-exchange (parallel tempering) (3)
                simulations at a number of temperatures to enhance
                sampling. This is preliminary, however.
	(iii) to do replica exchange between different energy functions.
		(e.g. between different umbrella windows) (4).
	(iv) exponential averaging of different force-fields (5).

Many other applications can be envisaged. 

This feature is still quite new and it is advisable to stick
closely to the test cases to start with.

References:
-------------
1. R. B. Best & M. Vendruscolo, JACS, 126, 8090-8091 (2004) + supp info.
2. R. B. Best, J. Clarke & M. Karplus, J. Mol. Biol., 349, 185-203 (2005).
3. K. Lindorff-Larsen, R. B. Best, M. A. DePristo, C. M. Dobson &
   M. Vendruscolo, Nature, 433, 128-132 (2005).
4. R. B. Best & G. Hummer, unpublished.
5. R. B. Best, Y-G. Chen and G. Hummer, Structure, 13, 1755-1763 (2005).

------------------------------------------------------------------
NOTES ON BUILDING THE ENSEMBLE CODE:
These are both valid (one of LAMMPI or MPICH must be specified)
$> ./install.com gnu medium g77 E LAMMPI
$> ./install.com gnu medium g77 E MPICH 
It should also work with other compilers.
I use the following for an ensemble-specific build directory:
$> ./install.com gnu.ensemble medium g77 E LAMMPI 3
'3' selects stopmark 3 so you can build using make in the build
directory without any further trafficking with install.com.

NOTE ALSO: ENSEMBLE IS CURRENTLY INCOMPATIBLE WITH PARALLEL
------------------------------------------------------------------

* Menu:

* Syntax::              Syntax of the ENSEMBLE command
* Function::            Purpose of each of the keywords



File: Ensemble -=- Node: Syntax
Up: Top -=- Previous: Top -=- Next: Function


Replica exchange commands:
--------------------------

ENSEMBLE EXCH T2REp integer REP2t integer FREQ integer MAPU integer -
        [ AUTO LOWT real TGRAD real PSWAP real | TEMP1 TEMP2 ... TEMPN ]

ENSEMBLE [SWON | SWOFF]

ENSEMBLE WRITE UNIT integer

ENSEMBLE INFO

General commands:
-----------------

ENSEMBLE OPEN UNIT integer [READ | WRITE] file-type filename
        file-type is one of CARD, FILE, etc. as for normal OPEN

ENSEMBLE CLOSE UNIT integer

ENSEMBLE SEED [ROOT integer]



File: Ensemble -=- Node: Function
Previous: Syntax -=- Up: Top -=- Next: Top


The following section describes the keywords of the ENSEMBLE command.

General Description
===================

The CHARMM run is started using MPI commands to specify the number of processes
pe rreplica to use (each of which is an identical copy of charmm). This number
is automatically passed by MPI to each copy of the executable, and it is set to
the internal CHARMM variable 'nensem', which can be used in scripts, e.g.
        set nrep ?nensem

The other internal variable set automatically via MPI is 'whoiam', e.g.
        set node ?whoiam

These are useful for giving different file names to different nodes.

The root node (whoiam = 0) reads the input file and passes it line by
line to all other nodes. So it is as if each node reads the input file
itself, but substituting its own internal variables such as 'whoiam',
and each node maintains a completely independent copy of all data.
This allows dynamics to be run much as usual, with all nodes happily
unaware of the others. This is obviously pointless, but there are
a few issues to note regarding I/O at this stage. There are two 
options for opening and closing files:
(i) the usual 'open ...' and 'close ...'
(ii) 'ensemble open ...' and 'ensemble close'

The syntax for the ensemble versions is almost exactly the same.
When a file is opened with 'open'/'close', it will only be read/written
to by the root node. With 'ensemble open'/'ensemble close', each node
reads/writes independently. You will probably need to give different
file names for different nodes, e.g.

set node ?whoiam
ensemble open unit 20 write file name 'traj_@NODE.dcd'

Files that must be opened with ensemble:
----------------------------------------
trajectories (coord/velocities/..)
restart files
energy files from dynamics runs
any other dynamics output which will differ between replicas
coordinate writing
experimental data files for HQBM

Files that must not be opened with ensemble:
--------------------------------------------
iunj,iund, etc. files from HQBM
eef1 solvation parameters

Files which can be opened either with ensemble or not depending on 
purpose:
--------------------------------------------------------------------
Topology and parameter files. If these are opened with ensemble,
in principle a different force-field may be read by each executable
if different file names are specified.
Coordinates for reading -- if opened ensemble, each copy can
read different coordinates

DO NOT try to close units with 'CLOSE' that have been opened with
'ENSEMBLE OPEN' & vice versa. These errors should be caught, but
best to be safe.

Initialization
--------------
For most ensemble averaged restraints, starting all replicas with the same
coordinates and velocities this is a waste of time (and is one pathological
case where an N-replica simulation will behave exactly like a single replica).
Thusly, one should assign either or both different random seeds (see below) and
different starting coordinates to different replicas. Bear in mind that not all
integration schemes in CHARMM actually use a random seed from the dyna command
(e.g. NOSE does not, but LEAP VERLET does).

Replica Exchange
================

NOTE: THE REPLICA EXCHANGE FEATURE IS STILL NOT THOROUGHLY TESTED AND
SHOULD THEREFORE BE USED WITH CAUTION.

At present, only the main dynamics integrator in charmm (that is, the
three-step verlet in dynamc.src) is supported by this command. Thus
'DYNA NOSE' etc. will not work, but 'DYNA LEAP' will.

An earlier version of this code required a deconvolution of coordinates
written at different tempertures. However, since the overhead for 
coordinate swapping is so low, it is easier to do it during the run
and that is how it is done at present. A record of swaps is still
written out for information.

The idea will not be described here, see Sugita & Okamoto, Chem. Phys. Lett.
314, 141-151 (1999), for example.

When starting off, replica exchange is turned off. To turn it on and
set up temperatures use:

ENSEMBLE EXCH T2REp integer REP2t integer FREQ integer MAPU integer -
        [ AUTO LOWT real TGRAD real PSWAP real | TEMP1 TEMP2 ... TEMPN ]
        T2RE integer: unit to write map of replica(T) as sim progresses
        REP2 integer: unit to write map of T(replica) as sim progresses
        (yes, this is redundant!)
        FREQ integer: frequency in MD timesteps for attempting swaps
        MAPU integer: file to read a final temperature map in order
                to restart dynamics 
        AUTO LOWT real TGRAD real PSWAP real: this is the first way to
                set up replica temperatures. Just specify the lowest
                temperature you want, the gradient of potential energy
                as a function of T (determined from a few trial
                simulations), and  the desired probability of
                swapping replicas. This assumes a delta function for
		the energy distributions, which is clearly incorrect.
        TEMP1 TEMP2 ... TEMPN: specify temperatures manually - must give
                as many as there are replicas!

ENSEMBLE [SWON | SWOFF]: turn replica exchange on/off. Can be useful to 
        have it off for initial equilibration.

ENSEMBLE WRITE UNIT integer: write temperature map to unit for restart
        purposes (read in using MAPU in ENSE EXCH).

ENSEMBLE INFO: print out info about replica temperatures, etc.

General commands:
-----------------

ENSEMBLE OPEN UNIT integer [READ | WRITE] file-type filename
        Opens a separate file for each replica. Analogous to normal
        OPEN. File-type is one of CARD, FILE, etc. as for normal OPEN

ENSEMBLE CLOSE UNIT integer
        Analogous to normal close, but closes units for all replicas.

ENSEMBLE SEED [ROOT integer]
        This is a very BAD way of providing different random seeds to
        different replicas, since it ensures that all replicas will
        use the same sequence of random numbers, with a slight
        shift. Better to assign seeds manually from some more
        random source:
                if ?whoiam .eq. 0 set seed 23832
                if ?whoiam .eq. 1 set seed 9375283
                etc...


Ensemble restraints
=====================

This is mostly documented in hqbm.doc. The only relevant commands
are the 'general' ones above. Note comments about random seeds!

TESTCASES (in test/c33test):
============================

rex_ens.inp: Simple example of replica exchange

To run ensemble tests, use the following command in the test directory:
./test.com E arch 
in this case the optional fourth command specifying target will be ignored.


NIH/CIT Biowulf
CHARMM.org Homepage

CHARMM Documentation / Rick_Venable@nih.gov