forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6242 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
eee2e80e72
commit
11948c4cfb
|
@ -40,7 +40,7 @@ describe the most current version of LAMMPS.
|
|||
describe the version you have.
|
||||
|
||||
<LI>The <A HREF = "Manual.pdf">PDF file</A> on the WWW site or in the tarball is updated
|
||||
about once per month. This is because it is large, and we don't want
|
||||
about once per month. This is because it is large, and we don't want
|
||||
it to be part of very patch.
|
||||
</UL>
|
||||
<P>LAMMPS stands for Large-scale Atomic/Molecular Massively Parallel
|
||||
|
|
|
@ -37,7 +37,7 @@ If you browse the HTML doc pages included in your tarball, they
|
|||
describe the version you have. :l
|
||||
|
||||
The "PDF file"_Manual.pdf on the WWW site or in the tarball is updated
|
||||
about once per month. This is because it is large, and we don't want
|
||||
about once per month. This is because it is large, and we don't want
|
||||
it to be part of very patch. :ule,l
|
||||
|
||||
LAMMPS stands for Large-scale Atomic/Molecular Massively Parallel
|
||||
|
|
|
@ -15,23 +15,24 @@
|
|||
</H3>
|
||||
<P><B>Syntax:</B>
|
||||
</P>
|
||||
<PRE>pair_style style distance_cutoff angle_cutof N
|
||||
<PRE>pair_style style N inner_distance_cutoff outer_distance_cutoff angle_cutof
|
||||
</PRE>
|
||||
<UL><LI>style = <I>hbond/dreiding/lj</I> or <I>hbond/dreiding/morse</I>
|
||||
<LI>n = cosine angle periodicity
|
||||
<LI>distance_cutoff = global cutoff for Donor-Acceptor interactions (distance units)
|
||||
<LI>inner_distance_cutoff = global inner spline cutoff for Donor-Acceptor interactions (distance units)
|
||||
<LI>outer_distance_cutoff = global cutoff for Donor-Acceptor interactions (distance units)
|
||||
<LI>angle_cutoff = global angle cutoff for Acceptor-Hydrogen-Donor
|
||||
<LI>interactions (degrees)
|
||||
</UL>
|
||||
<P><B>Examples:</B>
|
||||
</P>
|
||||
<PRE>pair_style hbond/dreiding/lj 4 5.0 90
|
||||
<PRE>pair_style hbond/dreiding/lj 4 4.5 5.0 90
|
||||
pair_coeff * * 3 i 100.0 3.1
|
||||
pair_coeff * * 2*5 i 100.0 3.1 2 200.0
|
||||
pair_coeff * * 2*5 i 100.0 3.1 2 15.0 20.0 135.0
|
||||
</PRE>
|
||||
<PRE>pair_style hbond/dreiding/morse 2 4.6 75.0
|
||||
<PRE>pair_style hbond/dreiding/morse 2 3.0 4.6 75.0
|
||||
pair_coeff * * 3 j 100.0 1.0 2.0
|
||||
pair_coeff * * 2*5 j 100.0 1.0 2.0 4
|
||||
pair_coeff * * 2*5 j 100.0 1.0 2.0 4.0 6.0
|
||||
</PRE>
|
||||
<P><B>Description:</B>
|
||||
</P>
|
||||
|
@ -41,8 +42,9 @@ pair_coeff * * 2*5 j 100.0 1.0 2.0 4
|
|||
</P>
|
||||
<CENTER><IMG SRC = "Eqs/pair_hbond_dreiding.jpg">
|
||||
</CENTER>
|
||||
<P>where Rc is the distance cutoff, theta_c is the angle cutoff, and n is
|
||||
the cosine periodicity.
|
||||
<P>where Rin is the inner spline distance cutoff, Rout is the outer
|
||||
distance cutoff, theta_c is the angle cutoff, and n is the cosine
|
||||
periodicity.
|
||||
</P>
|
||||
<P>Here, <I>r</I> is the radial distance between the donor (D) and acceptor
|
||||
(A) atoms and <I>theta</I> is the bond angle between the acceptor, the
|
||||
|
@ -169,17 +171,18 @@ re-specified in an input script that reads a restart file.
|
|||
<A HREF = "run_style.html">run_style respa</A> command. They do not support the
|
||||
<I>inner</I>, <I>middle</I>, <I>outer</I> keywords.
|
||||
</P>
|
||||
<P>These pair style tally a count of how many hydrogen bonding
|
||||
interactions they calculate each timestep. This quantity can be
|
||||
accessed via the <A HREF = "compute_pair.html">compute pair</A> command as a vector
|
||||
of values of length 1.
|
||||
<P>These pair styles tally a count of how many hydrogen bonding
|
||||
interactions they calculate each timestep and the hbond energy. These
|
||||
quantities can be accessed via the <A HREF = "compute_pair.html">compute pair</A>
|
||||
command as a vector of values of length 2.
|
||||
</P>
|
||||
<P>To print this quantity to the log file (with a descriptive column
|
||||
<P>To print these quantities to the log file (with a descriptive column
|
||||
heading) the following commands could be included in an input script:
|
||||
</P>
|
||||
<PRE>compute hb all pair hbond/dreiding/lj
|
||||
variable hb equal c_hb[1]
|
||||
thermo_style custom step temp epair v_hb
|
||||
variable n_hbond equal c_hb[1] #number hbonds
|
||||
variable E_hbond equal c_hb[2] #hbond energy
|
||||
thermo_style custom step temp epair v_E_hbond
|
||||
</PRE>
|
||||
<HR>
|
||||
|
||||
|
|
|
@ -11,23 +11,24 @@ pair_style hbond/dreiding/morse command :h3
|
|||
|
||||
[Syntax:]
|
||||
|
||||
pair_style style distance_cutoff angle_cutof N :pre
|
||||
pair_style style N inner_distance_cutoff outer_distance_cutoff angle_cutof :pre
|
||||
|
||||
style = {hbond/dreiding/lj} or {hbond/dreiding/morse}
|
||||
n = cosine angle periodicity
|
||||
distance_cutoff = global cutoff for Donor-Acceptor interactions (distance units)
|
||||
inner_distance_cutoff = global inner spline cutoff for Donor-Acceptor interactions (distance units)
|
||||
outer_distance_cutoff = global cutoff for Donor-Acceptor interactions (distance units)
|
||||
angle_cutoff = global angle cutoff for Acceptor-Hydrogen-Donor
|
||||
interactions (degrees) :ul
|
||||
|
||||
[Examples:]
|
||||
|
||||
pair_style hbond/dreiding/lj 4 5.0 90
|
||||
pair_style hbond/dreiding/lj 4 4.5 5.0 90
|
||||
pair_coeff * * 3 i 100.0 3.1
|
||||
pair_coeff * * 2*5 i 100.0 3.1 2 200.0 :pre
|
||||
pair_coeff * * 2*5 i 100.0 3.1 2 15.0 20.0 135.0 :pre
|
||||
|
||||
pair_style hbond/dreiding/morse 2 4.6 75.0
|
||||
pair_style hbond/dreiding/morse 2 3.0 4.6 75.0
|
||||
pair_coeff * * 3 j 100.0 1.0 2.0
|
||||
pair_coeff * * 2*5 j 100.0 1.0 2.0 4 :pre
|
||||
pair_coeff * * 2*5 j 100.0 1.0 2.0 4.0 6.0 :pre
|
||||
|
||||
[Description:]
|
||||
|
||||
|
@ -37,8 +38,9 @@ The {hbond/dreiding} styles compute the Acceptor-Hydrogen-Donor (AHD)
|
|||
|
||||
:c,image(Eqs/pair_hbond_dreiding.jpg)
|
||||
|
||||
where Rc is the distance cutoff, theta_c is the angle cutoff, and n is
|
||||
the cosine periodicity.
|
||||
where Rin is the inner spline distance cutoff, Rout is the outer
|
||||
distance cutoff, theta_c is the angle cutoff, and n is the cosine
|
||||
periodicity.
|
||||
|
||||
Here, {r} is the radial distance between the donor (D) and acceptor
|
||||
(A) atoms and {theta} is the bond angle between the acceptor, the
|
||||
|
@ -165,17 +167,18 @@ These pair styles can only be used via the {pair} keyword of the
|
|||
"run_style respa"_run_style.html command. They do not support the
|
||||
{inner}, {middle}, {outer} keywords.
|
||||
|
||||
These pair style tally a count of how many hydrogen bonding
|
||||
interactions they calculate each timestep. This quantity can be
|
||||
accessed via the "compute pair"_compute_pair.html command as a vector
|
||||
of values of length 1.
|
||||
These pair styles tally a count of how many hydrogen bonding
|
||||
interactions they calculate each timestep and the hbond energy. These
|
||||
quantities can be accessed via the "compute pair"_compute_pair.html
|
||||
command as a vector of values of length 2.
|
||||
|
||||
To print this quantity to the log file (with a descriptive column
|
||||
To print these quantities to the log file (with a descriptive column
|
||||
heading) the following commands could be included in an input script:
|
||||
|
||||
compute hb all pair hbond/dreiding/lj
|
||||
variable hb equal c_hb\[1\]
|
||||
thermo_style custom step temp epair v_hb :pre
|
||||
variable n_hbond equal c_hb\[1\] #number hbonds
|
||||
variable E_hbond equal c_hb\[2\] #hbond energy
|
||||
thermo_style custom step temp epair v_E_hbond :pre
|
||||
|
||||
:line
|
||||
|
||||
|
|
Loading…
Reference in New Issue