~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to tools/moltemplate/examples/CG_misc/translocation/README_run.sh

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2015-04-29 23:44:49 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150429234449-mbhy9utku6hp6oq8
Tags: 0~20150313.gitfa668e1-1
Upload into unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# --- Running LAMMPS ---
2
 
#  -- Prerequisites: --
3
 
# The "run.in.nvt" file is a LAMMPS input script containing
4
 
# references to the input scripts and data files
5
 
# you hopefully have created earlier with moltemplate.sh:
6
 
#   system.in.init, system.in.settings, system.data
7
 
# If not, carry out the instructions in "README_setup.sh".
8
 
#
9
 
#  -- Instructions: --
10
 
# If "lmp_linux" is the name of the command you use to invoke lammps,
11
 
# then you would run lammps on these files this way:
12
 
 
13
 
 
14
 
lmp_linux -i run.in.nvt  # Run a simulation at constant volume
15
 
 
16
 
#or 
17
 
 
18
 
lmp_linux -i run.in.npt  # Run a simulation at constant pressure
19
 
                         # (Note: Constant pressure conditions have not been 
20
 
                         #  well tested.  The "run.in.npt" script may fail.)
21
 
 
22
 
 
23
 
 
24
 
# If you have compiled the MPI version of lammps, you can run lammps in parallel
25
 
#mpirun -np 4 lmp_linux -i run.in.nvt
26
 
#or
27
 
#mpirun -np 4 lmp_linux -i run.in.npt
28
 
# (assuming you have 4 processors available)